From patchwork Sat Jul 16 10:42:26 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurence Withers X-Patchwork-Id: 104953 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 5F686B6F70 for ; Sat, 16 Jul 2011 20:43:14 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D057C2811B; Sat, 16 Jul 2011 12:42:59 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SB3RWLrtlOgG; Sat, 16 Jul 2011 12:42:59 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 390CB2811C; Sat, 16 Jul 2011 12:42:47 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7CAA2280FD for ; Sat, 16 Jul 2011 12:42:43 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zzY04guVaz8L for ; Sat, 16 Jul 2011 12:42:42 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from chrysocolla.lwithers.me.uk (chrysocolla.lwithers.me.uk [80.68.94.184]) by theia.denx.de (Postfix) with ESMTPS id 1E83D28100 for ; Sat, 16 Jul 2011 12:42:40 +0200 (CEST) Received: from 4.b.0.2.4.9.e.f.f.f.5.6.f.6.e.1.0.0.0.0.5.a.1.0.0.b.8.0.1.0.0.2.ip6.arpa ([2001:8b0:1a5:0:1e6f:65ff:fe94:20b4] helo=rhodium.platinum.guralp.com) by chrysocolla.lwithers.me.uk with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1Qi2KU-0001fp-Ax; Sat, 16 Jul 2011 10:42:38 +0000 Received: from lwithers by rhodium.platinum.guralp.com with local (Exim 4.72) (envelope-from ) id 1Qi2KS-0005q0-Vt; Sat, 16 Jul 2011 10:42:36 +0000 From: Laurence Withers To: u-boot@lists.denx.de Date: Sat, 16 Jul 2011 10:42:26 +0000 Message-Id: <1310812947-22396-2-git-send-email-lwithers@guralp.com> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1310812947-22396-1-git-send-email-lwithers@guralp.com> References: <1310812947-22396-1-git-send-email-lwithers@guralp.com> To: u-boot@lists.denx.de Subject: [U-Boot] [PATCH v2 1/2] DaVinci: rename gpio_defs.h to gpio.h X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de In preparation for a generic GPIO driver for the DA8xx processors, rename to and fix up all files which include it. Signed-off-by: Laurence Withers --- Changes for v2: - Use git format-patch -C to properly denote rename. --- .../asm/arch-davinci/{gpio_defs.h => gpio.h} | 0 board/davinci/dm355leopard/dm355leopard.c | 2 +- board/davinci/dm365evm/dm365evm.c | 2 +- drivers/usb/musb/da8xx.h | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename arch/arm/include/asm/arch-davinci/{gpio_defs.h => gpio.h} (100%) diff --git a/arch/arm/include/asm/arch-davinci/gpio_defs.h b/arch/arm/include/asm/arch-davinci/gpio.h similarity index 100% rename from arch/arm/include/asm/arch-davinci/gpio_defs.h rename to arch/arm/include/asm/arch-davinci/gpio.h diff --git a/board/davinci/dm355leopard/dm355leopard.c b/board/davinci/dm355leopard/dm355leopard.c index 0ee0d11..0ad5678 100644 --- a/board/davinci/dm355leopard/dm355leopard.c +++ b/board/davinci/dm355leopard/dm355leopard.c @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/board/davinci/dm365evm/dm365evm.c b/board/davinci/dm365evm/dm365evm.c index 5fb7611..ac54106 100644 --- a/board/davinci/dm365evm/dm365evm.c +++ b/board/davinci/dm365evm/dm365evm.c @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #ifdef CONFIG_DAVINCI_MMC diff --git a/drivers/usb/musb/da8xx.h b/drivers/usb/musb/da8xx.h index b9660ba..be1cdaf 100644 --- a/drivers/usb/musb/da8xx.h +++ b/drivers/usb/musb/da8xx.h @@ -25,7 +25,7 @@ #define __DA8XX_MUSB_H__ #include -#include +#include #include "musb_core.h" /* Base address of da8xx usb0 wrapper */