]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP: Fix OMAP aic23 audio drivers because function
authorDirk Behme <dirk.behme_at_gmail.com>
Fri, 12 May 2006 12:13:48 +0000 (05:13 -0700)
committerTony Lindgren <tony@atomide.com>
Fri, 12 May 2006 12:13:48 +0000 (05:13 -0700)
name tlv320aic23_write_value() was switched to
aic23_write_value().

Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
sound/arm/omap/omap-alsa-aic23.c
sound/oss/omap-audio-aic23.c

index f49061618194fb673dbc1939150b6f9d1670965b..18b7395a03c3acbdcbf14729d9905856fc84b017 100644 (file)
@@ -113,12 +113,12 @@ static snd_pcm_hardware_t aic23_snd_omap_alsa_capture = {
  * codec dependent code.
  */
 
-extern int tlv320aic23_write_value(u8 reg, u16 value);
+extern int aic23_write_value(u8 reg, u16 value);
 
 /* TLV320AIC23 is a write only device */
 void audio_aic23_write(u8 address, u16 data)
 {
-       tlv320aic23_write_value(address, data);
+       aic23_write_value(address, data);
 }
 EXPORT_SYMBOL_GPL(audio_aic23_write);
 
index 679edb04f0512461b3728d4dae7a10306483e455..1e41b1d4d3290a1747fccb003bfbf44403e0055b 100644 (file)
@@ -250,12 +250,12 @@ static audio_state_t aic23_state = {
 /* This will be defined in the audio.h */
 static struct file_operations *omap_audio_fops;
 
-extern int tlv320aic23_write_value(u8 reg, u16 value);
+extern int aic23_write_value(u8 reg, u16 value);
 
 /* TLV320AIC23 is a write only device */
 static __inline__ void audio_aic23_write(u8 address, u16 data)
 {
-        tlv320aic23_write_value(address, data);
+        aic23_write_value(address, data);
 }
 
 static int aic23_update(int flag, int val)