Message ID | 6a2c2e15e90138fcef67bed294d2e82d8d6f679b.1555967323.git.joseph.salisbury@microsoft.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 9d1c2f067e50bebb521ed6ced49ddf53bb1deba8 |
Headers | show |
Series | drivers: input: serio: Add a module desription | expand |
From: Joseph Salisbury <joseph.salisbury@microsoft.com> Sent: Monday, April 22, 2019 8:47 PM > > This patch only adds a MODULE_DESCRIPTION statement to the driver. > This change is only cosmetic, so there should be no runtime impact. > > Signed-off-by: Joseph Salisbury <joseph.salisbury@microsoft.com> > --- Reviewed-by: Michael Kelley <mikelley@microsoft.com>
On Tue, Apr 23, 2019 at 04:39:00PM +0000, Michael Kelley wrote: >From: Joseph Salisbury <joseph.salisbury@microsoft.com> Sent: Monday, April 22, 2019 8:47 PM >> >> This patch only adds a MODULE_DESCRIPTION statement to the driver. >> This change is only cosmetic, so there should be no runtime impact. >> >> Signed-off-by: Joseph Salisbury <joseph.salisbury@microsoft.com> >> --- > >Reviewed-by: Michael Kelley <mikelley@microsoft.com> Queued up for hyperv-next, thanks! -- Thanks, Sasha
diff --git a/drivers/input/serio/hyperv-keyboard.c b/drivers/input/serio/hyperv-keyboard.c index a8b9be3e28db..7935e52b5435 100644 --- a/drivers/input/serio/hyperv-keyboard.c +++ b/drivers/input/serio/hyperv-keyboard.c @@ -440,5 +440,7 @@ static void __exit hv_kbd_exit(void) } MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("Microsoft Hyper-V Synthetic Keyboard Driver"); + module_init(hv_kbd_init); module_exit(hv_kbd_exit);
Signed-off-by: Joseph Salisbury <joseph.salisbury@microsoft.com> --- drivers/input/serio/hyperv-keyboard.c | 2 ++ 1 file changed, 2 insertions(+)