diff mbox series

[RESEND,5/5] ASoC: max9867: Add copyright and module author

Message ID 20181204182200.GF1136@lenoch (mailing list archive)
State New, archived
Headers show
Series max9867 driver update | expand

Commit Message

Ladislav Michl Dec. 4, 2018, 6:22 p.m. UTC
Driver rewritten, assign copyright notice and change module author
as original one remains silent and I want to be notified about bugs.

Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
---
 sound/soc/codecs/max9867.c | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

Comments

Mark Brown Dec. 6, 2018, 8:10 p.m. UTC | #1
On Tue, Dec 04, 2018 at 07:22:00PM +0100, Ladislav Michl wrote:

> -/*
> +/* SPDX-License-Identifier: GPL-2.0
> + *
>   * max9867.c -- max9867 ALSA SoC Audio driver

SPDX headers in C files need to have C++ comments - please convert the
entire block to C++ so it looks more consistent.  Otherwise this looks
good.
diff mbox series

Patch

diff --git a/sound/soc/codecs/max9867.c b/sound/soc/codecs/max9867.c
index 7a08e2c70e17..36e73671a006 100644
--- a/sound/soc/codecs/max9867.c
+++ b/sound/soc/codecs/max9867.c
@@ -1,11 +1,9 @@ 
-/*
+/* SPDX-License-Identifier: GPL-2.0
+ *
  * max9867.c -- max9867 ALSA SoC Audio driver
  *
  * Copyright 2013-15 Maxim Integrated Products
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
+ * Copyright 2018 Ladislav Michl <ladis@linux-mips.org>
  */
 
 #include <linux/delay.h>
@@ -551,6 +549,6 @@  static struct i2c_driver max9867_i2c_driver = {
 
 module_i2c_driver(max9867_i2c_driver);
 
-MODULE_AUTHOR("anish kumar <yesanishhere@gmail.com>");
-MODULE_DESCRIPTION("ALSA SoC MAX9867 driver");
+MODULE_AUTHOR("Ladislav Michl <ladis@linux-mips.org>");
+MODULE_DESCRIPTION("ASoC MAX9867 driver");
 MODULE_LICENSE("GPL");