From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Howells Subject: [PATCH 26/35] UAPI: Guard linux/sound.h Date: Sat, 02 Jul 2011 12:11:18 +0100 Message-ID: <20110702111117.21948.55871.stgit@warthog.procyon.org.uk> References: <20110702110716.21948.74214.stgit@warthog.procyon.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Return-path: Received: from mx1.redhat.com ([209.132.183.28]:29888 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751006Ab1GBLLV (ORCPT ); Sat, 2 Jul 2011 07:11:21 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p62BBL0k025955 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Sat, 2 Jul 2011 07:11:21 -0400 In-Reply-To: <20110702110716.21948.74214.stgit@warthog.procyon.org.uk> Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux-arch@vger.kernel.org Cc: dhowells@redhat.com Place reinclusion guards on linux/sound.h otherwise the splitter script won't insert a #include_next. Signed-off-by: David Howells --- 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 44dcf05..fae20ba 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 */