|
@@ -53,12 +53,14 @@ static struct nvec_ps2 ps2_dev;
|
|
|
static int ps2_startstreaming(struct serio *ser_dev)
|
|
|
{
|
|
|
unsigned char buf[] = { NVEC_PS2, AUTO_RECEIVE_N, PACKET_SIZE };
|
|
|
+
|
|
|
return nvec_write_async(ps2_dev.nvec, buf, sizeof(buf));
|
|
|
}
|
|
|
|
|
|
static void ps2_stopstreaming(struct serio *ser_dev)
|
|
|
{
|
|
|
unsigned char buf[] = { NVEC_PS2, CANCEL_AUTO_RECEIVE };
|
|
|
+
|
|
|
nvec_write_async(ps2_dev.nvec, buf, sizeof(buf));
|
|
|
}
|
|
|
|