2019-06-18 09:06:43

by Patrick Havelange

[permalink] [raw]
Subject: [PATCH 1/1] 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]>
---
drivers/counter/ftm-quaddec.c | 4 ++--
1 file 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]>");
--
2.19.1


2019-06-18 09:18:49

by William Breathitt Gray

[permalink] [raw]
Subject: Re: [PATCH 1/1] counter/ftm-quaddec: Add missing '>' in MODULE_AUTHOR

On Tue, Jun 18, 2019 at 11:05:41AM +0200, Patrick Havelange wrote:
> 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]>
> ---
> drivers/counter/ftm-quaddec.c | 4 ++--
> 1 file 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]>");
> --
> 2.19.1

Signed-off-by: William Breathitt Gray <[email protected]>

Jonathan, please pick up this fix as well.

William Breathit Gray

2019-06-22 09:58:54

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH 1/1] counter/ftm-quaddec: Add missing '>' in MODULE_AUTHOR

On Tue, 18 Jun 2019 18:17:31 +0900
William Breathitt Gray <[email protected]> wrote:

> On Tue, Jun 18, 2019 at 11:05:41AM +0200, Patrick Havelange wrote:
> > 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]>
> > ---
> > drivers/counter/ftm-quaddec.c | 4 ++--
> > 1 file 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]>");
> > --
> > 2.19.1
>
> Signed-off-by: William Breathitt Gray <[email protected]>
>
> Jonathan, please pick up this fix as well.
>
Applied to the togreg branch of iio.git and pushed out as testing though not
sure anyone other than Randy is running checks on this one!

Thanks,

Jonathan

> William Breathit Gray