aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1996-11-15 08:30:39 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1996-11-15 08:30:39 +0000
commit3dc9f2bb59424d9e807e6728802ce1eaef5b7c90 (patch)
treec96045317d0779cb7485002677c8d28d80a265bf
parentca015941f4920dd7ec8dba72db284e1bd125fe82 (diff)
Notes
-rw-r--r--sys/i386/isa/sound/pas2_card.c2
-rw-r--r--sys/i386/isa/sound/pas2_midi.c2
-rw-r--r--sys/i386/isa/sound/pas2_mixer.c2
-rw-r--r--sys/i386/isa/sound/pas2_pcm.c2
-rw-r--r--sys/i386/isa/sound/pas_defs.h (renamed from sys/i386/isa/sound/pas.h)0
-rw-r--r--sys/i386/isa/sound/sb16_dsp.c2
-rw-r--r--sys/i386/isa/sound/sb16_midi.c2
-rw-r--r--sys/i386/isa/sound/sb_defs.h (renamed from sys/i386/isa/sound/sb.h)0
-rw-r--r--sys/i386/isa/sound/sb_dsp.c2
-rw-r--r--sys/i386/isa/sound/sb_midi.c2
-rw-r--r--sys/i386/isa/sound/sb_mixer.c2
11 files changed, 9 insertions, 9 deletions
diff --git a/sys/i386/isa/sound/pas2_card.c b/sys/i386/isa/sound/pas2_card.c
index eeff8ae22802..b6092615bb36 100644
--- a/sys/i386/isa/sound/pas2_card.c
+++ b/sys/i386/isa/sound/pas2_card.c
@@ -33,7 +33,7 @@
#if defined(CONFIGURE_SOUNDCARD) && !defined(EXCLUDE_PAS)
#define DEFINE_TRANSLATIONS
-#include <i386/isa/sound/pas.h>
+#include <i386/isa/sound/pas_defs.h>
static int config_pas_hw __P((struct address_info *hw_config));
static int detect_pas_hw __P((struct address_info *hw_config));
diff --git a/sys/i386/isa/sound/pas2_midi.c b/sys/i386/isa/sound/pas2_midi.c
index a83158e44d45..ac4467b42ef8 100644
--- a/sys/i386/isa/sound/pas2_midi.c
+++ b/sys/i386/isa/sound/pas2_midi.c
@@ -31,7 +31,7 @@
#ifdef CONFIGURE_SOUNDCARD
-#include <i386/isa/sound/pas.h>
+#include <i386/isa/sound/pas_defs.h>
#if !defined(EXCLUDE_PAS) && !defined(EXCLUDE_MIDI) && defined(EXCLUDE_PRO_MIDI)
diff --git a/sys/i386/isa/sound/pas2_mixer.c b/sys/i386/isa/sound/pas2_mixer.c
index c1ba76b7df57..53ae8ada07de 100644
--- a/sys/i386/isa/sound/pas2_mixer.c
+++ b/sys/i386/isa/sound/pas2_mixer.c
@@ -33,7 +33,7 @@
#if defined(CONFIGURE_SOUNDCARD) && !defined(EXCLUDE_PAS)
-#include <i386/isa/sound/pas.h>
+#include <i386/isa/sound/pas_defs.h>
extern void mix_write __P((unsigned char data, int ioaddr));
static int pas_mixer_ioctl __P((int dev, unsigned int cmd, unsigned int arg));
diff --git a/sys/i386/isa/sound/pas2_pcm.c b/sys/i386/isa/sound/pas2_pcm.c
index 97ae76cf0fc6..385ab1d22ca4 100644
--- a/sys/i386/isa/sound/pas2_pcm.c
+++ b/sys/i386/isa/sound/pas2_pcm.c
@@ -32,7 +32,7 @@
#ifdef CONFIGURE_SOUNDCARD
-#include <i386/isa/sound/pas.h>
+#include <i386/isa/sound/pas_defs.h>
static int pcm_set_bits __P((int arg));
static int pcm_set_channels __P((int arg));
diff --git a/sys/i386/isa/sound/pas.h b/sys/i386/isa/sound/pas_defs.h
index c4af2d499db4..c4af2d499db4 100644
--- a/sys/i386/isa/sound/pas.h
+++ b/sys/i386/isa/sound/pas_defs.h
diff --git a/sys/i386/isa/sound/sb16_dsp.c b/sys/i386/isa/sound/sb16_dsp.c
index 405777425168..5f6f3a66a56c 100644
--- a/sys/i386/isa/sound/sb16_dsp.c
+++ b/sys/i386/isa/sound/sb16_dsp.c
@@ -35,7 +35,7 @@
* #define DEB_DMARES
*/
#include <i386/isa/sound/sound_config.h>
-#include <i386/isa/sound/sb.h>
+#include <i386/isa/sound/sb_defs.h>
#include <i386/isa/sound/sb_mixer.h>
#if defined(CONFIGURE_SOUNDCARD) && !defined(EXCLUDE_SB16) && !defined(EXCLUDE_SB) && !defined(EXCLUDE_AUDIO) && !defined(EXCLUDE_SBPRO)
diff --git a/sys/i386/isa/sound/sb16_midi.c b/sys/i386/isa/sound/sb16_midi.c
index 7dae75011248..308d234eaaed 100644
--- a/sys/i386/isa/sound/sb16_midi.c
+++ b/sys/i386/isa/sound/sb16_midi.c
@@ -33,7 +33,7 @@
#if !defined(EXCLUDE_SB) && !defined(EXCLUDE_SB16) && !defined(EXCLUDE_MIDI)
-#include <i386/isa/sound/sb.h>
+#include <i386/isa/sound/sb_defs.h>
#ifdef PC98
#define DATAPORT (sb16midi_base)
diff --git a/sys/i386/isa/sound/sb.h b/sys/i386/isa/sound/sb_defs.h
index e21c7c86e9ee..e21c7c86e9ee 100644
--- a/sys/i386/isa/sound/sb.h
+++ b/sys/i386/isa/sound/sb_defs.h
diff --git a/sys/i386/isa/sound/sb_dsp.c b/sys/i386/isa/sound/sb_dsp.c
index 82a2178317a4..0d97d1964664 100644
--- a/sys/i386/isa/sound/sb_dsp.c
+++ b/sys/i386/isa/sound/sb_dsp.c
@@ -37,7 +37,7 @@
#if defined(CONFIGURE_SOUNDCARD) && !defined(EXCLUDE_SB)
-#include <i386/isa/sound/sb.h>
+#include <i386/isa/sound/sb_defs.h>
#include <i386/isa/sound/sb_mixer.h>
#undef SB_TEST_IRQ
diff --git a/sys/i386/isa/sound/sb_midi.c b/sys/i386/isa/sound/sb_midi.c
index de661ac35903..96fdcb998875 100644
--- a/sys/i386/isa/sound/sb_midi.c
+++ b/sys/i386/isa/sound/sb_midi.c
@@ -31,7 +31,7 @@
#if defined(CONFIGURE_SOUNDCARD) && !defined(EXCLUDE_SB) && !defined(EXCLUDE_MIDI)
-#include <i386/isa/sound/sb.h>
+#include <i386/isa/sound/sb_defs.h>
#undef SB_TEST_IRQ
/*
diff --git a/sys/i386/isa/sound/sb_mixer.c b/sys/i386/isa/sound/sb_mixer.c
index 4fd2db20a2fc..dc34c09b497a 100644
--- a/sys/i386/isa/sound/sb_mixer.c
+++ b/sys/i386/isa/sound/sb_mixer.c
@@ -37,7 +37,7 @@
#if defined(CONFIGURE_SOUNDCARD) && !defined(EXCLUDE_SB) && !defined(EXCLUDE_SBPRO)
#define __SB_MIXER_C__
-#include <i386/isa/sound/sb.h>
+#include <i386/isa/sound/sb_defs.h>
#include <i386/isa/sound/sb_mixer.h>
#undef SB_TEST_IRQ