Minor patch to sound drivers

Dale R. Worley (worley@ariadne.com)
Mon, 27 Jan 1997 10:00:17 -0500


I know this is a minor thing, but I want to rename the
U6850_{BASE,IRQ} symbols to UART6850_{BASE,IRQ} for uniformity with
other, similar symbols. I was trying to manually edit some of the
configuration and got confused by this irregularity. The patches
against 2.1.22 are below.

Thanks,

Dale

--
Dale R. Worley					Ariadne Internet Services
Voice: +1 617-899-7949   Fax: +1 617-899-7946	E-mail: worley@ariadne.com
"Internet-based electronic commerce solutions to real business problems."
----------------------------------------------------------------------
diff -u drivers/sound/configure.c.orig-UART drivers/sound/configure.c
--- drivers/sound/configure.c.orig-UART	Fri Nov 15 03:15:12 1996
+++ drivers/sound/configure.c	Sun Jan 26 21:50:27 1997
@@ -921,13 +921,13 @@
 		  9,
 		  "5, 9, 12 or 15");
 
-  ask_int_choice (B (OPT_UART6850), "U6850_BASE",
+  ask_int_choice (B (OPT_UART6850), "UART6850_BASE",
 		  "I/O base for UART 6850 MIDI port",
 		  FMT_HEX,
 		  0,
 		  "(Unknown)");
 
-  ask_int_choice (B (OPT_UART6850), "U6850_IRQ",
+  ask_int_choice (B (OPT_UART6850), "UART6850_IRQ",
 		  "UART6850 IRQ",
 		  FMT_INT,
 		  -1,
diff -u drivers/sound/dev_table.h.orig-UART drivers/sound/dev_table.h
--- drivers/sound/dev_table.h.orig-UART	Sun Jan 26 13:18:23 1997
+++ drivers/sound/dev_table.h	Sun Jan 26 21:50:27 1997
@@ -470,7 +470,7 @@
 #endif
 
 #if defined(CONFIG_UART6850) && defined(CONFIG_MIDI)
-		{SNDCARD_UART6850, {U6850_BASE, U6850_IRQ, 0, -1}, SND_DEFAULT_ENABLE},
+		{SNDCARD_UART6850, {UART6850_BASE, UART6850_IRQ, 0, -1}, SND_DEFAULT_ENABLE},
 #endif
 
 #if defined(CONFIG_SB) 
----------------------------------------------------------------------