From e4f1300054b7aa9d9baaa50b66ea0828a3598366 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Sun, 7 Aug 2011 22:46:50 +0000 Subject: [PATCH] [I8042PRT] - "implement" IRP_MN_QUERY_PNP_DEVICE_STATE svn path=/trunk/; revision=53131 --- reactos/drivers/input/i8042prt/pnp.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/reactos/drivers/input/i8042prt/pnp.c b/reactos/drivers/input/i8042prt/pnp.c index 9a3e0b84f4c..62f7175898e 100644 --- a/reactos/drivers/input/i8042prt/pnp.c +++ b/reactos/drivers/input/i8042prt/pnp.c @@ -705,6 +705,14 @@ i8042Pnp( Status = Irp->IoStatus.Status; break; } + case IRP_MN_QUERY_PNP_DEVICE_STATE: /* 0x14 */ + { + TRACE_(I8042PRT, "IRP_MJ_PNP / IRP_MN_QUERY_PNP_DEVICE_STATE\n"); + /* Nothing much to tell */ + Information = 0; + Status = STATUS_SUCCESS; + break; + } default: { ERR_(I8042PRT, "IRP_MJ_PNP / unknown minor function 0x%x\n", MinorFunction);