1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

Attempt to make the sound driver recompile, at least for LINT which has

the sscape/trix driver active, which (for some reason) disables the
mpu401 driver, causing an undefined reference to mpuintr.  This was broken
with rev 1.79 (part of the PC98 nss driver commit).
This commit is contained in:
Peter Wemm 1999-05-02 20:40:28 +00:00
parent edfdec1910
commit cf52c04ff2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=46334

View File

@ -437,7 +437,7 @@ sndattach(struct isa_device * dev)
if (strcmp(dname, "uart0") == 0)
dev->id_ointr = m6850intr;
#endif
#if NMPU > 0
#if NMPU > 0 && defined(CONFIG_MIDI)
if (strcmp(dname, "mpu") == 0)
dev->id_ointr = mpuintr;
#endif