From patchwork Fri Sep 30 12:05:55 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Shawn Guo X-Patchwork-Id: 4452 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 C6B3D23FB8 for ; Fri, 30 Sep 2011 12:03:19 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id B1AECA1833E for ; Fri, 30 Sep 2011 12:03:19 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id 23so3994779fxe.11 for ; Fri, 30 Sep 2011 05:03:19 -0700 (PDT) Received: by 10.223.94.134 with SMTP id z6mr18188310fam.8.1317384185355; Fri, 30 Sep 2011 05:03:05 -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.152.3.234 with SMTP id f10cs49353laf; Fri, 30 Sep 2011 05:03:05 -0700 (PDT) Received: by 10.224.211.197 with SMTP id gp5mr8796963qab.249.1317384183920; Fri, 30 Sep 2011 05:03:03 -0700 (PDT) Received: from mail-qw0-f50.google.com (mail-qw0-f50.google.com [209.85.216.50]) by mx.google.com with ESMTPS id gz8si1409907qab.91.2011.09.30.05.03.03 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Sep 2011 05:03:03 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.216.50 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) client-ip=209.85.216.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.216.50 is neither permitted nor denied by best guess record for domain of shawn.guo@linaro.org) smtp.mail=shawn.guo@linaro.org Received: by qabj34 with SMTP id j34so254911qab.37 for ; Fri, 30 Sep 2011 05:03:03 -0700 (PDT) Received: by 10.68.38.162 with SMTP id h2mr57789460pbk.49.1317384182874; Fri, 30 Sep 2011 05:03:02 -0700 (PDT) Received: from localhost.localdomain ([121.236.240.85]) by mx.google.com with ESMTPS id y5sm17475449pbe.6.2011.09.30.05.02.50 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 30 Sep 2011 05:03:01 -0700 (PDT) From: Shawn Guo To: Sascha Hauer Cc: linux-arm-kernel@lists.infradead.org, patches@linaro.org, Shawn Guo Subject: [PATCH] arm/imx: rename MX51_MXC_INT_ATA to MX51_INT_ATA Date: Fri, 30 Sep 2011 20:05:55 +0800 Message-Id: <1317384355-24481-1-git-send-email-shawn.guo@linaro.org> X-Mailer: git-send-email 1.7.4.1 MIME-Version: 1.0 This change is to fix the compile error below. CC arch/arm/plat-mxc/devices/platform-pata_imx.o arch/arm/plat-mxc/devices/platform-pata_imx.c:33:1: error: ‘MX51_INT_ATA’ undeclared here (not in a function) make[3]: *** [arch/arm/plat-mxc/devices/platform-pata_imx.o] Error 1 Signed-off-by: Shawn Guo --- Sascha, This is a compile error seen on your imx-features branch. arch/arm/plat-mxc/include/mach/mx51.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/plat-mxc/include/mach/mx51.h b/arch/arm/plat-mxc/include/mach/mx51.h index dede19a..0d4aa9e 100644 --- a/arch/arm/plat-mxc/include/mach/mx51.h +++ b/arch/arm/plat-mxc/include/mach/mx51.h @@ -311,7 +311,7 @@ #define MX51_MXC_INT_SIM_IPB 67 #define MX51_MXC_INT_SIM_DAT 68 #define MX51_MXC_INT_IIM 69 -#define MX51_MXC_INT_ATA 70 +#define MX51_INT_ATA 70 #define MX51_MXC_INT_CCM1 71 #define MX51_MXC_INT_CCM2 72 #define MX51_MXC_INT_GPC1 73