diff options
author | Patrick Havelange <[email protected]> | 2019-06-18 11:05:41 +0200 |
---|---|---|
committer | Jonathan Cameron <[email protected]> | 2019-06-22 10:57:13 +0100 |
commit | 67009e1932f00d0d29dfa3ad1c7576178c7c2c2b (patch) | |
tree | f2c02b2d348588b0a82ed16f262245a7557f04af | |
parent | 8915aacac4dd5326a07f6b9c01f266289c57c71e (diff) |
counter/ftm-quaddec: Add missing '>' in MODULE_AUTHOR
The last '>' chars were missing in the MODULE_AUTHOR entries.
Reported-by: Randy Dunlap <[email protected]>
Fixes: a3b9a99980d9 ("counter: add FlexTimer Module Quadrature decoder counter driver")
Signed-off-by: Patrick Havelange <[email protected]>
Signed-off-by: William Breathitt Gray <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
-rw-r--r-- | drivers/counter/ftm-quaddec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/counter/ftm-quaddec.c b/drivers/counter/ftm-quaddec.c index c83c8875bf82..68a9b7393457 100644 --- a/drivers/counter/ftm-quaddec.c +++ b/drivers/counter/ftm-quaddec.c @@ -352,5 +352,5 @@ static struct platform_driver ftm_quaddec_driver = { module_platform_driver(ftm_quaddec_driver); MODULE_LICENSE("GPL"); -MODULE_AUTHOR("Kjeld Flarup <[email protected]"); -MODULE_AUTHOR("Patrick Havelange <[email protected]"); +MODULE_AUTHOR("Kjeld Flarup <[email protected]>"); +MODULE_AUTHOR("Patrick Havelange <[email protected]>"); |