Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e0557c0d authored by Shawn Guo's avatar Shawn Guo
Browse files

ARM: imx: move platform device code into mach-imx



It moves platform device code from plat-mxc into mach-imx.  Along with
that, header devices-common.h gets moved from plat-mxc/include/mach/
into mach-imx/devices/.

Signed-off-by: default avatarShawn Guo <shawn.guo@linaro.org>
Acked-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
Acked-by: default avatarArnd Bergmann <arnd@arndb.de>
parent c45b1342
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -772,3 +772,5 @@ config SOC_IMX6Q
	  This enables support for Freescale i.MX6 Quad processor.

endif

source "arch/arm/mach-imx/devices/Kconfig"
+2 −0
Original line number Diff line number Diff line
@@ -92,3 +92,5 @@ obj-$(CONFIG_MACH_MX50_RDP) += mach-mx50_rdp.o

obj-$(CONFIG_MACH_IMX51_DT) += imx51-dt.o
obj-$(CONFIG_SOC_IMX53) += mach-imx53.o

obj-y += devices/
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 * the terms of the GNU General Public License version 2 as published by the
 * Free Software Foundation.
 */
#include <mach/devices-common.h>
#include "devices/devices-common.h"

extern const struct imx_imx_fb_data imx1_imx_fb_data;
#define imx1_add_imx_fb(pdata) \
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 * the terms of the GNU General Public License version 2 as published by the
 * Free Software Foundation.
 */
#include <mach/devices-common.h>
#include "devices/devices-common.h"

extern const struct imx_imx21_hcd_data imx21_imx21_hcd_data;
#define imx21_add_imx21_hcd(pdata)	\
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
 * the terms of the GNU General Public License version 2 as published by the
 * Free Software Foundation.
 */
#include <mach/devices-common.h>
#include "devices/devices-common.h"

extern const struct imx_fec_data imx25_fec_data;
#define imx25_add_fec(pdata)	\
Loading