From patchwork Tue Mar 27 05:11:46 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Tushar Behera X-Patchwork-Id: 7477 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 92B1A23E40 for ; Tue, 27 Mar 2012 05:19:29 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 4C6BCA18396 for ; Tue, 27 Mar 2012 05:19:29 +0000 (UTC) Received: by iage36 with SMTP id e36so12316184iag.11 for ; Mon, 26 Mar 2012 22:19:28 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:mime-version:x-gm-message-state :content-type:content-transfer-encoding; bh=Fs9fs6qH69VDkBdVD71jPzxH8KSsskgIFcJKp0axzW8=; b=lesKooc7vOaWwSdq/eZhcxsNwybbe4BeEbuBD6lKEp84vs7Ze8HThLnXLhLZdXHEkD aio/o9eGMwTaPtf97W4Xi1o6zSajye32K5WIGLCoFQYLwaMPU500kVrCbHq+PMA1gPoI /Pq5l3yLGQSByN0TW5c0KdWvibedOF/AGu85UUtlKeUiAV1EpNFT0iQ0gSiVW9xJvN+F oG4yfeR2xEmIEo6sjzdVpPLiUnSWGwtgfmmgl0IS+isikWhq+H7Y1nobYxtBVIhP/L8W LZzY9VYd9P44DbkzrnStMT1idz23G4CkaKdyXB9ZLX1uYb6A3a4y5dS+awQReM3iQktF BIDg== Received: by 10.50.46.164 with SMTP id w4mr7645380igm.54.1332825568724; Mon, 26 Mar 2012 22:19:28 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.5.205 with SMTP id 13csp8138ibw; Mon, 26 Mar 2012 22:19:28 -0700 (PDT) Received: by 10.68.242.38 with SMTP id wn6mr49779738pbc.72.1332825567631; Mon, 26 Mar 2012 22:19:27 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id b5si20834925pbj.83.2012.03.26.22.19.27 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Mar 2012 22:19:27 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of tushar.behera@linaro.org) smtp.mail=tushar.behera@linaro.org Received: by pbcxa12 with SMTP id xa12so8143066pbc.37 for ; Mon, 26 Mar 2012 22:19:27 -0700 (PDT) Received: by 10.68.136.69 with SMTP id py5mr59164837pbb.71.1332825567396; Mon, 26 Mar 2012 22:19:27 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id 6sm14068541pbh.65.2012.03.26.22.19.25 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 26 Mar 2012 22:19:26 -0700 (PDT) From: Tushar Behera To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, patches@linaro.org Subject: [PATCH] ARM: EXYNOS: Add missing definition for IRQ_I2S0 Date: Tue, 27 Mar 2012 10:41:46 +0530 Message-Id: <1332825106-10898-1-git-send-email-tushar.behera@linaro.org> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 X-Gm-Message-State: ALoCoQl5wby1d5xPi71IMx/MiSVloVDaUmWsbRbw8mqTIrAqvGyyc46IJrar6hOMjznwDOUJYqpk This fixes following build error when sound support is selected on EXYNOS4 platform. sound/soc/samsung/idma.c: In function ‘idma_close’: sound/soc/samsung/idma.c:327:11: error: ‘IRQ_I2S0’ undeclared (first use in this function) Signed-off-by: Tushar Behera --- arch/arm/mach-exynos/include/mach/irqs.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/include/mach/irqs.h b/arch/arm/mach-exynos/include/mach/irqs.h index 9bee853..591e785 100644 --- a/arch/arm/mach-exynos/include/mach/irqs.h +++ b/arch/arm/mach-exynos/include/mach/irqs.h @@ -212,6 +212,8 @@ #define IRQ_MFC EXYNOS4_IRQ_MFC #define IRQ_SDO EXYNOS4_IRQ_SDO +#define IRQ_I2S0 EXYNOS4_IRQ_I2S0 + #define IRQ_ADC EXYNOS4_IRQ_ADC0 #define IRQ_TC EXYNOS4_IRQ_PEN0