diff options
author | Takashi Iwai <tiwai@suse.de> | 2010-09-30 22:59:12 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-09-30 22:59:12 +0200 |
commit | e913b146493993c8ac33561655c590e58b500c6f (patch) | |
tree | 978456c580e384a6f59a4b8ac7ce05bf8e37ae6e /sound | |
parent | 5591bf07225523600450edd9e6ad258bb877b779 (diff) | |
download | linux-e913b146493993c8ac33561655c590e58b500c6f.tar.gz linux-e913b146493993c8ac33561655c590e58b500c6f.tar.bz2 linux-e913b146493993c8ac33561655c590e58b500c6f.zip |
ALSA: i2c/other/ak4xx-adda: Fix a compile warning with CONFIG_PROCFS=n
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/i2c/other/ak4xxx-adda.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/i2c/other/ak4xxx-adda.c b/sound/i2c/other/ak4xxx-adda.c index 1adb8a3c2b62..42d7844ecd0b 100644 --- a/sound/i2c/other/ak4xxx-adda.c +++ b/sound/i2c/other/ak4xxx-adda.c @@ -900,7 +900,7 @@ static int proc_init(struct snd_akm4xxx *ak) return 0; } #else /* !CONFIG_PROC_FS */ -static int proc_init(struct snd_akm4xxx *ak) {} +static int proc_init(struct snd_akm4xxx *ak) { return 0; } #endif int snd_akm4xxx_build_controls(struct snd_akm4xxx *ak) |