| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0 |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * For the STS-Thompson TDA7432 audio processor chip |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 9 | 10 | * |
|---|
| 10 | 11 | * Copyright (c) 2000 Eric Sandeen <eric_sandeen@bigfoot.com> |
|---|
| 11 | 12 | * Copyright (c) 2006 Mauro Carvalho Chehab <mchehab@kernel.org> |
|---|
| 12 | | - * This code is placed under the terms of the GNU General Public License |
|---|
| 13 | + * |
|---|
| 13 | 14 | * Based on tda9855.c by Steve VanDeBogart (vandebo@uclink.berkeley.edu) |
|---|
| 14 | 15 | * Which was based on tda8425.c by Greg Alexander (c) 1998 |
|---|
| 15 | 16 | * |
|---|
| .. | .. |
|---|
| 19 | 20 | * |
|---|
| 20 | 21 | * loudness - set between 0 and 15 for varying degrees of loudness effect |
|---|
| 21 | 22 | * |
|---|
| 22 | | - * maxvol - set maximium volume to +20db (1), default is 0db(0) |
|---|
| 23 | + * maxvol - set maximum volume to +20db (1), default is 0db(0) |
|---|
| 23 | 24 | */ |
|---|
| 24 | 25 | |
|---|
| 25 | 26 | #include <linux/module.h> |
|---|
| .. | .. |
|---|
| 53 | 54 | module_param(loudness, int, S_IRUGO); |
|---|
| 54 | 55 | MODULE_PARM_DESC(loudness, "Turn loudness on(1) else off(0). Default is off(0)."); |
|---|
| 55 | 56 | 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)."); |
|---|
| 57 | 58 | |
|---|
| 58 | 59 | |
|---|
| 59 | 60 | /* Structure of address and subaddresses for the tda7432 */ |
|---|