diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 1997-03-25 04:16:25 +0000 |
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 1997-03-25 04:16:25 +0000 |
| commit | 588a8fcc98badf26ade0b7fddc79bd248ceb1dce (patch) | |
| tree | 55fde9be6649887dbf9dadfda9a5b79ed8696f0c | |
| parent | 0e23e1a104cce8ef4fab28b669a3f97c84c2b52c (diff) | |
Notes
| -rw-r--r-- | sys/i386/isa/sound/sb16_midi.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/i386/isa/sound/sb16_midi.c b/sys/i386/isa/sound/sb16_midi.c index 308d234eaaed..aaf607fdf1b7 100644 --- a/sys/i386/isa/sound/sb16_midi.c +++ b/sys/i386/isa/sound/sb16_midi.c @@ -233,7 +233,11 @@ attach_sb16midi (long mem_start, struct address_info *hw_config) return mem_start; } - printk (" <SoundBlaster MPU-401>"); +#ifdef __FreeBSD__ + printk ("sbmidi0: <SoundBlaster 16 MPU-401>"); +#else + printk (" <SoundBlaster 16 MPU-401>"); +#endif std_midi_synth.midi_dev = my_dev = num_midis; midi_devs[num_midis++] = &sb16midi_operations; |
