Page MenuHomeFreeBSD

sound: Clean up midi/ includes
Needs ReviewPublic

Authored by christos on Thu, Nov 20, 2:00 PM.
Tags
None
Referenced Files
F136941692: D53841.id.diff
Thu, Nov 20, 6:47 PM
F136939598: D53841.id166846.diff
Thu, Nov 20, 6:29 PM
F136934390: D53841.diff
Thu, Nov 20, 5:53 PM
F136932282: D53841.diff
Thu, Nov 20, 5:40 PM
Subscribers
None

Details

Reviewers
markj
emaste
imp
Summary

Sponsored by: The FreeBSD Foundation
MFC after: 1 week

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped
Build Status
Buildable 68764
Build 65647: arc lint + arc unit

Event Timeline

christos created this revision.
sys/dev/sound/midi/midi.c
35

style(9) calls for sys/types.h first

Kernel include files (sys/*.h) come first.  If either <sys/types.h> or
<sys/param.h> is needed, include it before other include files.
(<sys/param.h> includes <sys/types.h>; do not include both.) Next,
include <sys/systm.h>, if needed.  The remaining kernel headers should be
sorted alphabetically.
sys/dev/sound/midi/midi.h
32

Do we not want this for uint8_t?