From: Uwe Kleine-König Date: Thu, 10 Dec 2009 09:34:04 +0000 (+0100) Subject: imx/mx2: rename files defining a machine to mach-$mach.c X-Git-Tag: v2.6.34-rc2~66^2~5^2~56^2~14 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=386c5cf7a9a1d6856f17bde43174f751fac1bc0b;p=karo-tx-linux.git imx/mx2: rename files defining a machine to mach-$mach.c Signed-off-by: Uwe Kleine-König Cc: Sascha Hauer Cc: Russell King Cc: Eric Benard --- diff --git a/arch/arm/mach-mx2/Makefile b/arch/arm/mach-mx2/Makefile index a3406984e6bd..3710893a94ab 100644 --- a/arch/arm/mach-mx2/Makefile +++ b/arch/arm/mach-mx2/Makefile @@ -11,14 +11,13 @@ obj-$(CONFIG_MACH_MX21) += clock_imx21.o obj-$(CONFIG_MACH_MX27) += cpu_imx27.o obj-$(CONFIG_MACH_MX27) += clock_imx27.o -obj-$(CONFIG_MACH_MX21ADS) += mx21ads.o -obj-$(CONFIG_MACH_MX27ADS) += mx27ads.o -obj-$(CONFIG_MACH_PCM038) += pcm038.o +obj-$(CONFIG_MACH_MX21ADS) += mach-mx21ads.o +obj-$(CONFIG_MACH_MX27ADS) += mach-mx27ads.o +obj-$(CONFIG_MACH_PCM038) += mach-pcm038.o obj-$(CONFIG_MACH_PCM970_BASEBOARD) += pcm970-baseboard.o -obj-$(CONFIG_MACH_MX27_3DS) += mx27pdk.o -obj-$(CONFIG_MACH_IMX27LITE) += mx27lite.o -obj-$(CONFIG_MACH_CPUIMX27) += eukrea_cpuimx27.o +obj-$(CONFIG_MACH_MX27_3DS) += mach-mx27_3ds.o +obj-$(CONFIG_MACH_IMX27LITE) += mach-imx27lite.o +obj-$(CONFIG_MACH_CPUIMX27) += mach-cpuimx27.o obj-$(CONFIG_MACH_EUKREA_MBIMX27_BASEBOARD) += eukrea_mbimx27-baseboard.o -obj-$(CONFIG_MACH_PCA100) += pca100.o -obj-$(CONFIG_MACH_MXT_TD60) += mxt_td60.o - +obj-$(CONFIG_MACH_PCA100) += mach-pca100.o +obj-$(CONFIG_MACH_MXT_TD60) += mach-mxt_td60.o diff --git a/arch/arm/mach-mx2/eukrea_cpuimx27.c b/arch/arm/mach-mx2/mach-cpuimx27.c similarity index 100% rename from arch/arm/mach-mx2/eukrea_cpuimx27.c rename to arch/arm/mach-mx2/mach-cpuimx27.c diff --git a/arch/arm/mach-mx2/mx27lite.c b/arch/arm/mach-mx2/mach-imx27lite.c similarity index 100% rename from arch/arm/mach-mx2/mx27lite.c rename to arch/arm/mach-mx2/mach-imx27lite.c diff --git a/arch/arm/mach-mx2/mx21ads.c b/arch/arm/mach-mx2/mach-mx21ads.c similarity index 100% rename from arch/arm/mach-mx2/mx21ads.c rename to arch/arm/mach-mx2/mach-mx21ads.c diff --git a/arch/arm/mach-mx2/mx27pdk.c b/arch/arm/mach-mx2/mach-mx27_3ds.c similarity index 100% rename from arch/arm/mach-mx2/mx27pdk.c rename to arch/arm/mach-mx2/mach-mx27_3ds.c diff --git a/arch/arm/mach-mx2/mx27ads.c b/arch/arm/mach-mx2/mach-mx27ads.c similarity index 100% rename from arch/arm/mach-mx2/mx27ads.c rename to arch/arm/mach-mx2/mach-mx27ads.c diff --git a/arch/arm/mach-mx2/mxt_td60.c b/arch/arm/mach-mx2/mach-mxt_td60.c similarity index 100% rename from arch/arm/mach-mx2/mxt_td60.c rename to arch/arm/mach-mx2/mach-mxt_td60.c diff --git a/arch/arm/mach-mx2/pca100.c b/arch/arm/mach-mx2/mach-pca100.c similarity index 100% rename from arch/arm/mach-mx2/pca100.c rename to arch/arm/mach-mx2/mach-pca100.c diff --git a/arch/arm/mach-mx2/pcm038.c b/arch/arm/mach-mx2/mach-pcm038.c similarity index 100% rename from arch/arm/mach-mx2/pcm038.c rename to arch/arm/mach-mx2/mach-pcm038.c