diff options
author | ache <ache@FreeBSD.org> | 1997-03-25 04:16:25 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-03-25 04:16:25 +0000 |
commit | 48fd2f3385ee5e6987a0e076cb0c22e06976a8b8 (patch) | |
tree | fdd0b79df9437ebd8f7c38777aaf11ff2ce37211 /sys | |
parent | 9187e889571dd54ef04ab60e793cc086c59543d6 (diff) | |
download | FreeBSD-src-48fd2f3385ee5e6987a0e076cb0c22e06976a8b8.zip FreeBSD-src-48fd2f3385ee5e6987a0e076cb0c22e06976a8b8.tar.gz |
Use FreeBSD-style attach message
Diffstat (limited to 'sys')
-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 308d234..aaf607f 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; |