.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * max98926.c -- ALSA SoC MAX98926 driver |
---|
3 | 4 | * Copyright 2013-15 Maxim Integrated Products |
---|
4 | | - * This program is free software; you can redistribute it and/or modify |
---|
5 | | - * it under the terms of the GNU General Public License version 2 as |
---|
6 | | - * published by the Free Software Foundation. |
---|
7 | 5 | */ |
---|
8 | 6 | #include <linux/delay.h> |
---|
9 | 7 | #include <linux/i2c.h> |
---|
.. | .. |
---|
20 | 18 | static const char * const max98926_boost_voltage_txt[] = { |
---|
21 | 19 | "8.5V", "8.25V", "8.0V", "7.75V", "7.5V", "7.25V", "7.0V", "6.75V", |
---|
22 | 20 | "6.5V", "6.5V", "6.5V", "6.5V", "6.5V", "6.5V", "6.5V", "6.5V" |
---|
23 | | -}; |
---|
24 | | - |
---|
25 | | -static const char * const max98926_boost_current_txt[] = { |
---|
26 | | - "0.6", "0.8", "1.0", "1.2", "1.4", "1.6", "1.8", "2.0", |
---|
27 | | - "2.2", "2.4", "2.6", "2.8", "3.2", "3.6", "4.0", "4.4" |
---|
28 | | -}; |
---|
29 | | - |
---|
30 | | -static const char *const max98926_dai_txt[] = { |
---|
31 | | - "Left", "Right", "LeftRight", "LeftRightDiv2", |
---|
32 | 21 | }; |
---|
33 | 22 | |
---|
34 | 23 | static const char *const max98926_pdm_ch_text[] = { |
---|