From: Bruno Moreira-Guedes Date: Sun, 3 Apr 2022 22:27:28 +0000 (-0300) Subject: staging: vme_user: Fixed typo in the MODULE_AUTHOR X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=01416de7fc45c259395e70148e3d9a2d7cea55cd;p=linux.git staging: vme_user: Fixed typo in the MODULE_AUTHOR The MODULE_AUTHOR line missed the '>' character in the end of the author's e-mail address. Just added it. Signed-off-by: Bruno Moreira-Guedes Link: https://lore.kernel.org/r/20220403222728.276111-1-codeagain@codeagain.dev Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/vme/devices/vme_user.c b/drivers/staging/vme/devices/vme_user.c index e3fa38bd7f124..859af797630c0 100644 --- a/drivers/staging/vme/devices/vme_user.c +++ b/drivers/staging/vme/devices/vme_user.c @@ -773,7 +773,7 @@ MODULE_PARM_DESC(bus, "Enumeration of VMEbus to which the driver is connected"); module_param_array(bus, int, &bus_num, 0000); MODULE_DESCRIPTION("VME User Space Access Driver"); -MODULE_AUTHOR("Martyn Welch "); MODULE_LICENSE("GPL"); module_init(vme_user_init);