diff options
author | ed <ed@FreeBSD.org> | 2008-08-19 19:45:08 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2008-08-19 19:45:08 +0000 |
commit | 6c10b95f591e34da2c498e8f2bccb35a4219ef75 (patch) | |
tree | 67856e568ef1b0a31b72d770c1145885b96f9ebc /sys/dev/sound/midi/sequencer.c | |
parent | 5c4a4c1479ece5b53deb83fef98fd3930394c41e (diff) | |
download | FreeBSD-src-6c10b95f591e34da2c498e8f2bccb35a4219ef75.zip FreeBSD-src-6c10b95f591e34da2c498e8f2bccb35a4219ef75.tar.gz |
Don't include <sys/tty.h> in our sound layer. It is not needed.
The PCM's sound.h file only seems to include <sys/tty.h>, because
channel_if seems to require selinfo. Just replace it with
<sys/selinfo.h>.
There's no real problem with including <sys/tty.h> here, even with
MPSAFE TTY, but <sys/tty.h> is something that should be used by the TTY
layer, its driver and code that integrated it with the process tree.
Diffstat (limited to 'sys/dev/sound/midi/sequencer.c')
-rw-r--r-- | sys/dev/sound/midi/sequencer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/sound/midi/sequencer.c b/sys/dev/sound/midi/sequencer.c index 9119343..aaf53ef 100644 --- a/sys/dev/sound/midi/sequencer.c +++ b/sys/dev/sound/midi/sequencer.c @@ -40,7 +40,6 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/sockio.h> #include <sys/fcntl.h> -#include <sys/tty.h> #include <sys/proc.h> #include <sys/sysctl.h> |