mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Use FreeBSD-style attach message
This commit is contained in:
parent
0e23e1a104
commit
588a8fcc98
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue