Message ID | 1392723517-12772-54-git-send-email-tiwai@suse.de (mailing list archive) |
---|---|
State | Accepted |
Commit | 347e5512642da44d15bf8b48ee0fe196b37a78f1 |
Delegated to: | Mark Brown |
Headers | show |
On Tue, Feb 18, 2014 at 12:38:37PM +0100, Takashi Iwai wrote:
> ... to make clear the meaning of the argument.
Applied, thanks.
diff --git a/sound/soc/codecs/wm8997.c b/sound/soc/codecs/wm8997.c index 6107108228b6..4e6442ce9a2a 100644 --- a/sound/soc/codecs/wm8997.c +++ b/sound/soc/codecs/wm8997.c @@ -123,10 +123,12 @@ static const unsigned int wm8997_osr_val[] = { static const struct soc_enum wm8997_hpout_osr[] = { SOC_VALUE_ENUM_SINGLE(ARIZONA_OUTPUT_PATH_CONFIG_1L, - ARIZONA_OUT1_OSR_SHIFT, 0x7, 3, + ARIZONA_OUT1_OSR_SHIFT, 0x7, + ARRAY_SIZE(wm8997_osr_text), wm8997_osr_text, wm8997_osr_val), SOC_VALUE_ENUM_SINGLE(ARIZONA_OUTPUT_PATH_CONFIG_3L, - ARIZONA_OUT3_OSR_SHIFT, 0x7, 3, + ARIZONA_OUT3_OSR_SHIFT, 0x7, + ARRAY_SIZE(wm8997_osr_text), wm8997_osr_text, wm8997_osr_val), };
... to make clear the meaning of the argument. Signed-off-by: Takashi Iwai <tiwai@suse.de> --- sound/soc/codecs/wm8997.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)