All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dirk Behme <dirk.behme@googlemail.com>
To: linux-omap-open-source@linux.omap.com
Subject: [PATCH] ARM: OMAP: Fix aic23 audio drivers
Date: Wed, 03 May 2006 20:41:59 +0200	[thread overview]
Message-ID: <4458F977.2060708@gmail.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 179 bytes --]


ARM: OMAP: Fix OMAP aic23 audio drivers because function
name tlv320aic23_write_value() was switched to
aic23_write_value().

Signed-off-by: Dirk Behme <dirk.behme_at_gmail.com>

[-- Attachment #2: tlv320_aic23_name_patch.txt --]
[-- Type: text/plain, Size: 1231 bytes --]

--- ./sound/arm/omap/omap-alsa-aic23.c_orig	2006-05-03 20:12:02.000000000 +0200
+++ ./sound/arm/omap/omap-alsa-aic23.c	2006-05-03 20:30:01.000000000 +0200
@@ -113,12 +113,12 @@ static snd_pcm_hardware_t aic23_snd_omap
  * 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);
 
--- ./sound/oss/omap-audio-aic23.c_orig	2006-05-03 20:29:49.000000000 +0200
+++ ./sound/oss/omap-audio-aic23.c	2006-05-03 20:30:40.000000000 +0200
@@ -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)


[-- Attachment #3: Type: text/plain, Size: 0 bytes --]



             reply	other threads:[~2006-05-03 18:41 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-05-03 18:41 Dirk Behme [this message]
2006-05-12 12:14 ` [PATCH] ARM: OMAP: Fix aic23 audio drivers Tony Lindgren

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4458F977.2060708@gmail.com \
    --to=dirk.behme@googlemail.com \
    --cc=linux-omap-open-source@linux.omap.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.