From patchwork Tue Apr 16 22:23:59 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tomasz Figa X-Patchwork-Id: 2451331 Return-Path: X-Original-To: patchwork-linux-samsung-soc@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 8C4EEDF230 for ; Tue, 16 Apr 2013 22:24:00 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965439Ab3DPWYA (ORCPT ); Tue, 16 Apr 2013 18:24:00 -0400 Received: from mail-ee0-f49.google.com ([74.125.83.49]:34278 "EHLO mail-ee0-f49.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965353Ab3DPWX7 (ORCPT ); Tue, 16 Apr 2013 18:23:59 -0400 Received: by mail-ee0-f49.google.com with SMTP id l10so454147eei.36 for ; Tue, 16 Apr 2013 15:23:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=CVxwUvWwJeEU5MCT8/wn0Cy+HNkImh8EbB0xVwuoAl8=; b=B1MO9/xcTz+A5qX7tMOZWGqTrxNdcZS21SZbMS2BeGPJSiECOB0jOrTyz0F03nXqch CAxZh3dk2rn6waOV1H0BHwj5q/2ts3GlBQF3qsy01a0HEUYvqxEo/P54pfcg7vOKpD4N HZ6P24oKVCGXigv9WrMJPgufVQk80E6s2oRyM8Fzn19o8fEneeZqh1a+SYUuysmXxpR8 iLDKEngQ7BVb1Tdd6GUNnfMSJ4ED3v8SqkqLc9+eTQEerNyNDqg49Z67HRxhOtaTiDhX M+nhRcvUIObTZEXl5HfHPcVRvAvvMrIIdn2rYVOcMvxMmsJjriFMpUO4ldOkiuoypJ9E qb6w== X-Received: by 10.15.31.197 with SMTP id y45mr11036822eeu.18.1366151038023; Tue, 16 Apr 2013 15:23:58 -0700 (PDT) Received: from flatron.localnet (87-207-52-162.dynamic.chello.pl. [87.207.52.162]) by mx.google.com with ESMTPS id j44sm5184560eeu.10.2013.04.16.15.23.55 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 16 Apr 2013 15:23:56 -0700 (PDT) From: Tomasz Figa To: Mark Brown Cc: linux-samsung-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree-discuss@lists.ozlabs.org, kgene.kim@samsung.com, kwangwoo.lee@gmail.com, jacmet@sunsite.dk, augulis.darius@gmail.com, mcuelenaere@gmail.com, linux@arm.linux.org.uk, Rob Herring , Mark Rutland , linus.walleij@linaro.org, thomas.abraham@linaro.org Subject: [PATCH 1/2] pinctrl: s3c64xx: Fix build error caused by undefined chained_irq_enter Date: Wed, 17 Apr 2013 00:23:59 +0200 Message-ID: <30362001.FF4K7WsZvh@flatron> User-Agent: KMail/4.10.2 (Linux/3.8.7-gentoo; KDE/4.10.2; x86_64; ; ) In-Reply-To: <20130416163331.GP26958@opensource.wolfsonmicro.com> References: <1366060483-20342-1-git-send-email-tomasz.figa@gmail.com> <20130416163331.GP26958@opensource.wolfsonmicro.com> MIME-Version: 1.0 Sender: linux-samsung-soc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-samsung-soc@vger.kernel.org Commit de88cbb7 moved definitions of chained_irq_enter and chained_irq_exit to a generic header, which must be now included instead of the legacy arch-specific one. This patch fixes build error caused by including the legacy header leading to undefined chained_irq_enter and chained_irq_exit symbols. Signed-off-by: Tomasz Figa --- drivers/pinctrl/pinctrl-s3c64xx.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/pinctrl/pinctrl-s3c64xx.c b/drivers/pinctrl/pinctrl-s3c64xx.c index b5d1c4a..89143c9 100644 --- a/drivers/pinctrl/pinctrl-s3c64xx.c +++ b/drivers/pinctrl/pinctrl-s3c64xx.c @@ -22,11 +22,10 @@ #include #include #include +#include #include #include -#include - #include "pinctrl-samsung.h" #define NUM_EINT0 28