diff options
author | Andy Shevchenko <[email protected]> | 2023-07-24 19:13:16 +0300 |
---|---|---|
committer | Bartosz Golaszewski <[email protected]> | 2023-07-27 09:32:57 +0200 |
commit | 94484a7935161795b3d8ff0168684821083e8ddf (patch) | |
tree | 291696bee2ee5b965f2fcddfee703a6f332ca118 | |
parent | 905c50cd15c1256a869b0a98da5025db0be89b9e (diff) |
gpio: ge: Fix English spelling and grammar
Fix English spelling and grammar in the comments.
While at it, fix the MODULE_AUTHOR() email address format.
Reported-by: Randy Dunlap <[email protected]>
Closes: https://lore.kernel.org/r/[email protected]
Signed-off-by: Andy Shevchenko <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Tested-by: Randy Dunlap <[email protected]> # build-tested
Signed-off-by: Bartosz Golaszewski <[email protected]>
-rw-r--r-- | drivers/gpio/gpio-ge.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/gpio/gpio-ge.c b/drivers/gpio/gpio-ge.c index ecadb81ce7f8..f92b3c8a3a8a 100644 --- a/drivers/gpio/gpio-ge.c +++ b/drivers/gpio/gpio-ge.c @@ -10,11 +10,12 @@ * kind, whether express or implied. */ -/* TODO +/* + * TODO: * - * Configuration of output modes (totem-pole/open-drain) - * Interrupt configuration - interrupts are always generated the FPGA relies on - * the I/O interrupt controllers mask to stop them propergating + * Configuration of output modes (totem-pole/open-drain). + * Interrupt configuration - interrupts are always generated, the FPGA relies + * on the I/O interrupt controllers mask to stop them from being propagated. */ #include <linux/gpio/driver.h> @@ -104,5 +105,5 @@ static struct platform_driver gef_gpio_driver = { module_platform_driver_probe(gef_gpio_driver, gef_gpio_probe); MODULE_DESCRIPTION("GE I/O FPGA GPIO driver"); -MODULE_AUTHOR("Martyn Welch <[email protected]"); +MODULE_AUTHOR("Martyn Welch <[email protected]>"); MODULE_LICENSE("GPL"); |