From: David Howells Date: Tue, 13 Dec 2011 09:26:45 +0000 (+0000) Subject: UAPI: Guard linux/sound.h X-Git-Tag: v3.3-rc1~56^2~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6682bb86fe1f3dba7e9cb1f0955775604599cea8;p=platform%2Fkernel%2Flinux-exynos.git 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 --- 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 */