From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lars-Peter Clausen Subject: Re: gta02: fix includes Date: Tue, 13 Oct 2009 01:22:15 +0200 Message-ID: <4AD3BA27.5000905@metafoo.de> References: <20091012201700.042515646@fluff.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mailhost.informatik.uni-hamburg.de (mailhost.informatik.uni-hamburg.de [134.100.9.70]) by alsa0.perex.cz (Postfix) with ESMTP id 98F542438E for ; Tue, 13 Oct 2009 01:22:06 +0200 (CEST) In-Reply-To: <20091012201700.042515646@fluff.org.uk> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: alsa-devel-bounces@alsa-project.org Errors-To: alsa-devel-bounces@alsa-project.org To: Ben Dooks Cc: alsa-devel@alsa-project.org, broonie@opensource.wolfsonmicro.com, Simtec Linux Team List-Id: alsa-devel@alsa-project.org >Ben Dooks wrote: >The gta02 build is missing and is also using the >incorrect header (it should be ). Fix these >two problems. > >Signed-off-by: Ben Dooks >Signed-off-by: Simtec Linux Team > >--- > sound/soc/s3c24xx/neo1973_gta02_wm8753.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) >Index: b/sound/soc/s3c24xx/neo1973_gta02_wm8753.c >=================================================================== >--- a/sound/soc/s3c24xx/neo1973_gta02_wm8753.c 2009-10-10 22:55:53.000000000 +0100 >+++ b/sound/soc/s3c24xx/neo1973_gta02_wm8753.c 2009-10-10 22:58:31.000000000 +0100 >@@ -19,6 +19,8 @@ > #include > #include > #include >+#include >+ > #include > #include > #include >@@ -29,7 +31,7 @@ > #include > #include >-#include >+#include This file is not using any of the symbols from regs-gpioh.h directly. It only uses GTA02_GPIO_{HP_IN,AMP_SHUT} from gta02.h which are defined as S3C2440_GPJX. So the include of regs-gpioj.h should rather go into gta02.h than here. - Lars