hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/media/i2c/tda7432.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0
12 /*
23 * For the STS-Thompson TDA7432 audio processor chip
34 *
....@@ -9,7 +10,7 @@
910 *
1011 * Copyright (c) 2000 Eric Sandeen <eric_sandeen@bigfoot.com>
1112 * Copyright (c) 2006 Mauro Carvalho Chehab <mchehab@kernel.org>
12
- * This code is placed under the terms of the GNU General Public License
13
+ *
1314 * Based on tda9855.c by Steve VanDeBogart (vandebo@uclink.berkeley.edu)
1415 * Which was based on tda8425.c by Greg Alexander (c) 1998
1516 *
....@@ -19,7 +20,7 @@
1920 *
2021 * loudness - set between 0 and 15 for varying degrees of loudness effect
2122 *
22
- * maxvol - set maximium volume to +20db (1), default is 0db(0)
23
+ * maxvol - set maximum volume to +20db (1), default is 0db(0)
2324 */
2425
2526 #include <linux/module.h>
....@@ -53,7 +54,7 @@
5354 module_param(loudness, int, S_IRUGO);
5455 MODULE_PARM_DESC(loudness, "Turn loudness on(1) else off(0). Default is off(0).");
5556 module_param(maxvol, int, S_IRUGO | S_IWUSR);
56
-MODULE_PARM_DESC(maxvol, "Set maximium volume to +20dB(0) else +0dB(1). Default is +20dB(0).");
57
+MODULE_PARM_DESC(maxvol, "Set maximum volume to +20dB(0) else +0dB(1). Default is +20dB(0).");
5758
5859
5960 /* Structure of address and subaddresses for the tda7432 */