diff options
author | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2017-01-03 06:39:45 +0000 |
---|---|---|
committer | Alexandre Ratchov <ratchov@cvs.openbsd.org> | 2017-01-03 06:39:45 +0000 |
commit | ff6d6996cbb4afdd583f62f3f55c30e63b367562 (patch) | |
tree | f2f0d1a286d8bdd204c0ae70097c7b7a5f450a60 /sys/dev | |
parent | 1de70b33bbdde16f24ad16e6d95b818e0be1edb4 (diff) |
No need to include sys/malloc.h. From Michael W. Bombardieri. Thanks.
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/midi.c | 3 | ||||
-rw-r--r-- | sys/dev/usb/umidi_quirks.c | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/sys/dev/midi.c b/sys/dev/midi.c index fdc43f17ac0..f0179a3d93a 100644 --- a/sys/dev/midi.c +++ b/sys/dev/midi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: midi.c,v 1.41 2016/12/20 16:03:39 ratchov Exp $ */ +/* $OpenBSD: midi.c,v 1.42 2017/01/03 06:39:44 ratchov Exp $ */ /* * Copyright (c) 2003, 2004 Alexandre Ratchov @@ -26,7 +26,6 @@ #include <sys/timeout.h> #include <sys/vnode.h> #include <sys/signalvar.h> -#include <sys/malloc.h> #include <sys/device.h> #include <dev/midi_if.h> diff --git a/sys/dev/usb/umidi_quirks.c b/sys/dev/usb/umidi_quirks.c index e1b47e04b1e..c316515fe95 100644 --- a/sys/dev/usb/umidi_quirks.c +++ b/sys/dev/usb/umidi_quirks.c @@ -1,4 +1,4 @@ -/* $OpenBSD: umidi_quirks.c,v 1.13 2015/03/14 03:38:50 jsg Exp $ */ +/* $OpenBSD: umidi_quirks.c,v 1.14 2017/01/03 06:39:44 ratchov Exp $ */ /* $NetBSD: umidi_quirks.c,v 1.4 2002/06/19 13:55:30 tshiozak Exp $ */ /* @@ -33,7 +33,6 @@ #include <sys/param.h> #include <sys/systm.h> #include <sys/kernel.h> -#include <sys/malloc.h> #include <sys/device.h> #include <sys/ioctl.h> #include <sys/conf.h> |