lkml.org 
[lkml]   [2003]   [Feb]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] 2.5.63 snd_printd
Date
From
Back in 2.5.60, it seemed that the intent was to do away with
snd_printd() and replace that function with a simple #define in terms
of snd_verbose_printd() or printk() as appropriate. This patch set
finishes the job by deleting both the snd_printd() function and the
corresponding EXPORT_SYMBOL(). This was needed to fix a compilation
error with CONFIG_SND_DEBUG=y and CONFIG_SND_VERBOSE_PRINTK not set.

Applies to 2.5.60 through 2.5.63 inclusive. Originally posted 14 Feb.

--
-----------------------------------------------------------------------
Bob Tracy WTO + WIPO = DMCA? http://www.anti-dmca.org
rct@frus.com
-----------------------------------------------------------------------
--- linux/sound/core/misc.c.orig 2003-02-13 15:48:42.000000000 -0600
+++ linux/sound/core/misc.c 2003-02-13 15:50:08.000000000 -0600
@@ -79,25 +79,3 @@
printk(tmpbuf);
}
#endif
-
-#if defined(CONFIG_SND_DEBUG) && !defined(CONFIG_SND_VERBOSE_PRINTK)
-void snd_printd(const char *format, ...)
-{
- va_list args;
- char tmpbuf[512];
-
- if (format[0] == '<' && format[1] >= '0' && format[1] <= '9' && format[2] == '>') {
- char tmp[] = "<0>";
- tmp[1] = format[1];
- printk("%sALSA: ", tmp);
- format += 3;
- } else {
- printk(KERN_DEBUG "ALSA: ");
- }
- va_start(args, format);
- vsnprintf(tmpbuf, sizeof(tmpbuf)-1, format, args);
- va_end(args);
- tmpbuf[sizeof(tmpbuf)-1] = '\0';
- printk(tmpbuf);
-}
-#endif
--- linux/sound/core/sound.c.orig 2003-02-13 15:48:42.000000000 -0600
+++ linux/sound/core/sound.c 2003-02-13 15:51:12.000000000 -0600
@@ -522,9 +522,6 @@
#if defined(CONFIG_SND_DEBUG) && defined(CONFIG_SND_VERBOSE_PRINTK)
EXPORT_SYMBOL(snd_verbose_printd);
#endif
-#if defined(CONFIG_SND_DEBUG) && !defined(CONFIG_SND_VERBOSE_PRINTK)
-EXPORT_SYMBOL(snd_printd);
-#endif
/* wrappers */
#ifdef CONFIG_SND_DEBUG_MEMORY
EXPORT_SYMBOL(snd_wrapper_kmalloc);
\
 
 \ /
  Last update: 2005-03-22 13:33    [W:0.041 / U:0.260 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site