* [PATCH] i2c: Drop stray comma in MODULE_AUTHOR statements
@ 2020-06-11 10:03 Jean Delvare
2020-06-11 10:24 ` Jarkko Nikula
2020-06-11 10:33 ` Wolfram Sang
0 siblings, 2 replies; 3+ messages in thread
From: Jean Delvare @ 2020-06-11 10:03 UTC (permalink / raw)
To: Linux I2C; +Cc: Kukjin Kim, Krzysztof Kozlowski, Wolfram Sang, Jarkko Nikula
It is not the common usage to have a comma between the name and the
email address, so remove it.
Signed-off-by: Jean Delvare <jdelvare@suse.de>
Cc: Kukjin Kim <kgene@kernel.org>
Cc: Krzysztof Kozlowski <krzk@kernel.org>
---
drivers/i2c/busses/i2c-exynos5.c | 4 ++--
drivers/i2c/busses/i2c-s3c2410.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
--- linux-5.7.orig/drivers/i2c/busses/i2c-exynos5.c 2020-06-01 01:49:15.000000000 +0200
+++ linux-5.7/drivers/i2c/busses/i2c-exynos5.c 2020-06-11 11:58:27.645731676 +0200
@@ -879,6 +879,6 @@ static struct platform_driver exynos5_i2
module_platform_driver(exynos5_i2c_driver);
MODULE_DESCRIPTION("Exynos5 HS-I2C Bus driver");
-MODULE_AUTHOR("Naveen Krishna Chatradhi, <ch.naveen@samsung.com>");
-MODULE_AUTHOR("Taekgyun Ko, <taeggyun.ko@samsung.com>");
+MODULE_AUTHOR("Naveen Krishna Chatradhi <ch.naveen@samsung.com>");
+MODULE_AUTHOR("Taekgyun Ko <taeggyun.ko@samsung.com>");
MODULE_LICENSE("GPL v2");
--- linux-5.7.orig/drivers/i2c/busses/i2c-s3c2410.c 2020-06-01 01:49:15.000000000 +0200
+++ linux-5.7/drivers/i2c/busses/i2c-s3c2410.c 2020-06-11 11:58:34.216801885 +0200
@@ -1267,5 +1267,5 @@ static void __exit i2c_adap_s3c_exit(voi
module_exit(i2c_adap_s3c_exit);
MODULE_DESCRIPTION("S3C24XX I2C Bus driver");
-MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
+MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
MODULE_LICENSE("GPL");
--
Jean Delvare
SUSE L3 Support
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] i2c: Drop stray comma in MODULE_AUTHOR statements
2020-06-11 10:03 [PATCH] i2c: Drop stray comma in MODULE_AUTHOR statements Jean Delvare
@ 2020-06-11 10:24 ` Jarkko Nikula
2020-06-11 10:33 ` Wolfram Sang
1 sibling, 0 replies; 3+ messages in thread
From: Jarkko Nikula @ 2020-06-11 10:24 UTC (permalink / raw)
To: Jean Delvare, Linux I2C; +Cc: Kukjin Kim, Krzysztof Kozlowski, Wolfram Sang
On 6/11/20 1:03 PM, Jean Delvare wrote:
> It is not the common usage to have a comma between the name and the
> email address, so remove it.
>
> Signed-off-by: Jean Delvare <jdelvare@suse.de>
> Cc: Kukjin Kim <kgene@kernel.org>
> Cc: Krzysztof Kozlowski <krzk@kernel.org>
> ---
> drivers/i2c/busses/i2c-exynos5.c | 4 ++--
> drivers/i2c/busses/i2c-s3c2410.c | 2 +-
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> --- linux-5.7.orig/drivers/i2c/busses/i2c-exynos5.c 2020-06-01 01:49:15.000000000 +0200
> +++ linux-5.7/drivers/i2c/busses/i2c-exynos5.c 2020-06-11 11:58:27.645731676 +0200
> @@ -879,6 +879,6 @@ static struct platform_driver exynos5_i2
> module_platform_driver(exynos5_i2c_driver);
>
> MODULE_DESCRIPTION("Exynos5 HS-I2C Bus driver");
> -MODULE_AUTHOR("Naveen Krishna Chatradhi, <ch.naveen@samsung.com>");
> -MODULE_AUTHOR("Taekgyun Ko, <taeggyun.ko@samsung.com>");
> +MODULE_AUTHOR("Naveen Krishna Chatradhi <ch.naveen@samsung.com>");
> +MODULE_AUTHOR("Taekgyun Ko <taeggyun.ko@samsung.com>");
> MODULE_LICENSE("GPL v2");
> --- linux-5.7.orig/drivers/i2c/busses/i2c-s3c2410.c 2020-06-01 01:49:15.000000000 +0200
> +++ linux-5.7/drivers/i2c/busses/i2c-s3c2410.c 2020-06-11 11:58:34.216801885 +0200
> @@ -1267,5 +1267,5 @@ static void __exit i2c_adap_s3c_exit(voi
> module_exit(i2c_adap_s3c_exit);
>
> MODULE_DESCRIPTION("S3C24XX I2C Bus driver");
> -MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
> +MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
> MODULE_LICENSE("GPL");
>
Reviewed-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] i2c: Drop stray comma in MODULE_AUTHOR statements
2020-06-11 10:03 [PATCH] i2c: Drop stray comma in MODULE_AUTHOR statements Jean Delvare
2020-06-11 10:24 ` Jarkko Nikula
@ 2020-06-11 10:33 ` Wolfram Sang
1 sibling, 0 replies; 3+ messages in thread
From: Wolfram Sang @ 2020-06-11 10:33 UTC (permalink / raw)
To: Jean Delvare; +Cc: Linux I2C, Kukjin Kim, Krzysztof Kozlowski, Jarkko Nikula
[-- Attachment #1: Type: text/plain, Size: 335 bytes --]
On Thu, Jun 11, 2020 at 12:03:47PM +0200, Jean Delvare wrote:
> It is not the common usage to have a comma between the name and the
> email address, so remove it.
>
> Signed-off-by: Jean Delvare <jdelvare@suse.de>
> Cc: Kukjin Kim <kgene@kernel.org>
> Cc: Krzysztof Kozlowski <krzk@kernel.org>
Applied to for-5.8, thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-06-11 10:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-11 10:03 [PATCH] i2c: Drop stray comma in MODULE_AUTHOR statements Jean Delvare
2020-06-11 10:24 ` Jarkko Nikula
2020-06-11 10:33 ` Wolfram Sang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).