mirror of https://gitee.com/openkylin/linux.git
USB: serial: mos7720: fix parallel-port state restore
The parallel-port restore operations is called when a driver claims the
port and is supposed to restore the provided state (e.g. saved when
releasing the port).
Fixes: b69578df7e
("USB: usbserial: mos7720: add support for parallel port on moschip 7715")
Cc: stable <stable@vger.kernel.org> # 2.6.35
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
This commit is contained in:
parent
179dfb9547
commit
975323ab8f
|
@ -639,6 +639,8 @@ static void parport_mos7715_restore_state(struct parport *pp,
|
||||||
spin_unlock(&release_lock);
|
spin_unlock(&release_lock);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
mos_parport->shadowDCR = s->u.pc.ctr;
|
||||||
|
mos_parport->shadowECR = s->u.pc.ecr;
|
||||||
write_parport_reg_nonblock(mos_parport, MOS7720_DCR,
|
write_parport_reg_nonblock(mos_parport, MOS7720_DCR,
|
||||||
mos_parport->shadowDCR);
|
mos_parport->shadowDCR);
|
||||||
write_parport_reg_nonblock(mos_parport, MOS7720_ECR,
|
write_parport_reg_nonblock(mos_parport, MOS7720_ECR,
|
||||||
|
|
Loading…
Reference in New Issue