diff options
author | David Howells <dhowells@redhat.com> | 2011-12-13 13:26:45 +0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2011-12-13 13:26:45 +0400 |
commit | 6682bb86fe1f3dba7e9cb1f0955775604599cea8 (patch) | |
tree | eb4674c21e3ac7b295ef7d9724a49a5b69943159 /include/linux/sound.h | |
parent | 3d7f1dc195167efcb269e83055672d5c0a6bd650 (diff) | |
download | linux-6682bb86fe1f3dba7e9cb1f0955775604599cea8.tar.xz |
UAPI: Guard linux/sound.h
Place reinclusion guards on linux/sound.h otherwise the UAPI splitter script
won't insert a #include to make the kernel header include the UAPI header.
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'include/linux/sound.h')
-rw-r--r-- | include/linux/sound.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/sound.h b/include/linux/sound.h index 44dcf0570432..fae20ba01fbf 100644 --- a/include/linux/sound.h +++ b/include/linux/sound.h @@ -1,3 +1,5 @@ +#ifndef _LINUX_SOUND_H +#define _LINUX_SOUND_H /* * Minor numbers for the sound driver. @@ -42,3 +44,5 @@ extern void unregister_sound_mixer(int unit); extern void unregister_sound_midi(int unit); extern void unregister_sound_dsp(int unit); #endif /* __KERNEL__ */ + +#endif /* _LINUX_SOUND_H */ |