Skip to content

Commit

Permalink
imx: reorganize IMX code as other SOCs
Browse files Browse the repository at this point in the history
Change is consistent with other SOCs and it is in preparation
for adding SOMs. SOC's related files are moved from cpu/ to
mach-imx/<SOC>.

This change is also coherent with the structure in kernel.

Signed-off-by: Stefano Babic <[email protected]>

CC: Fabio Estevam <[email protected]>
CC: Akshay Bhat <[email protected]>
CC: Ken Lin <[email protected]>
CC: Marek Vasut <[email protected]>
CC: Heiko Schocher <[email protected]>
CC: "Sébastien Szymanski" <[email protected]>
CC: Christian Gmeiner <[email protected]>
CC: Stefan Roese <[email protected]>
CC: Patrick Bruenn <[email protected]>
CC: Troy Kisky <[email protected]>
CC: Nikita Kiryanov <[email protected]>
CC: Otavio Salvador <[email protected]>
CC: "Eric Bénard" <[email protected]>
CC: Jagan Teki <[email protected]>
CC: Ye Li <[email protected]>
CC: Peng Fan <[email protected]>
CC: Adrian Alonso <[email protected]>
CC: Alison Wang <[email protected]>
CC: Tim Harvey <[email protected]>
CC: Martin Donnelly <[email protected]>
CC: Marcin Niestroj <[email protected]>
CC: Lukasz Majewski <[email protected]>
CC: Adam Ford <[email protected]>
CC: "Albert ARIBAUD (3ADEV)" <[email protected]>
CC: Boris Brezillon <[email protected]>
CC: Soeren Moch <[email protected]>
CC: Richard Hu <[email protected]>
CC: Wig Cheng <[email protected]>
CC: Vanessa Maegima <[email protected]>
CC: Max Krummenacher <[email protected]>
CC: Stefan Agner <[email protected]>
CC: Markus Niebel <[email protected]>
CC: Breno Lima <[email protected]>
CC: Francesco Montefoschi <[email protected]>
CC: Jaehoon Chung <[email protected]>
CC: Scott Wood <[email protected]>
CC: Joe Hershberger <[email protected]>
CC: Anatolij Gustschin <[email protected]>
CC: Simon Glass <[email protected]>
CC: "Andrew F. Davis" <[email protected]>
CC: "Łukasz Majewski" <[email protected]>
CC: Patrice Chotard <[email protected]>
CC: Nobuhiro Iwamatsu <[email protected]>
CC: Hans de Goede <[email protected]>
CC: Masahiro Yamada <[email protected]>
CC: Stephen Warren <[email protected]>
CC: Andre Przywara <[email protected]>
CC: "Álvaro Fernández Rojas" <[email protected]>
CC: York Sun <[email protected]>
CC: Xiaoliang Yang <[email protected]>
CC: Chen-Yu Tsai <[email protected]>
CC: George McCollister <[email protected]>
CC: Sven Ebenfeld <[email protected]>
CC: Filip Brozovic <[email protected]>
CC: Petr Kulhavy <[email protected]>
CC: Eric Nelson <[email protected]>
CC: Bai Ping <[email protected]>
CC: Anson Huang <[email protected]>
CC: Sanchayan Maity <[email protected]>
CC: Lokesh Vutla <[email protected]>
CC: Patrick Delaunay <[email protected]>
CC: Gary Bisson <[email protected]>
CC: Alexander Graf <[email protected]>
CC: [email protected]
Reviewed-by: Fabio Estevam <[email protected]>
Reviewed-by: Christian Gmeiner <[email protected]>
  • Loading branch information
sbabic committed Jul 12, 2017
1 parent f34ccce commit 552a848
Show file tree
Hide file tree
Showing 259 changed files with 362 additions and 360 deletions.
4 changes: 2 additions & 2 deletions MAINTAINERS
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ F: arch/arm/cpu/arm1136/mx*/
F: arch/arm/cpu/arm926ejs/mx*/
F: arch/arm/cpu/armv7/mx*/
F: arch/arm/cpu/armv7/vf610/
F: arch/arm/imx-common/
F: arch/arm/mach-imx/
F: arch/arm/include/asm/arch-imx/
F: arch/arm/include/asm/arch-mx*/
F: arch/arm/include/asm/arch-vf610/
F: arch/arm/include/asm/imx-common/
F: arch/arm/include/asm/mach-imx/
F: board/freescale/*mx*/

ARM HISILICON
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ u-boot.bin: u-boot-nodtb.bin FORCE
endif

%.imx: %.bin
$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@

%.vyb: %.imx
$(Q)$(MAKE) $(build)=arch/arm/cpu/armv7/vf610 $@
Expand Down Expand Up @@ -1064,10 +1064,10 @@ tpl/u-boot-with-tpl.bin: tpl/u-boot-tpl.bin u-boot.bin FORCE
$(call if_changed,pad_cat)

SPL: spl/u-boot-spl.bin FORCE
$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@

u-boot-with-spl.imx u-boot-with-nand-spl.imx: SPL u-boot.bin FORCE
$(Q)$(MAKE) $(build)=arch/arm/imx-common $@
$(Q)$(MAKE) $(build)=arch/arm/mach-imx $@

MKIMAGEFLAGS_u-boot.ubl = -n $(UBL_CONFIG) -T ublimage -e $(CONFIG_SYS_TEXT_BASE)

Expand Down
10 changes: 5 additions & 5 deletions arch/arm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1098,13 +1098,13 @@ source "arch/arm/mach-mvebu/Kconfig"

source "arch/arm/cpu/armv7/ls102xa/Kconfig"

source "arch/arm/cpu/armv7/mx7ulp/Kconfig"
source "arch/arm/mach-imx/mx7ulp/Kconfig"

source "arch/arm/cpu/armv7/mx7/Kconfig"
source "arch/arm/mach-imx/mx7/Kconfig"

source "arch/arm/cpu/armv7/mx6/Kconfig"
source "arch/arm/mach-imx/mx6/Kconfig"

source "arch/arm/cpu/armv7/mx5/Kconfig"
source "arch/arm/mach-imx/mx5/Kconfig"

source "arch/arm/mach-omap2/Kconfig"

Expand Down Expand Up @@ -1144,7 +1144,7 @@ source "arch/arm/cpu/armv8/zynqmp/Kconfig"

source "arch/arm/cpu/armv8/Kconfig"

source "arch/arm/imx-common/Kconfig"
source "arch/arm/mach-imx/Kconfig"

source "board/aries/m28evk/Kconfig"
source "board/bosch/shc/Kconfig"
Expand Down
4 changes: 2 additions & 2 deletions arch/arm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ libs-y += arch/arm/lib/

ifeq ($(CONFIG_SPL_BUILD),y)
ifneq (,$(CONFIG_MX23)$(CONFIG_MX28)$(CONFIG_MX35)$(filter $(SOC), mx25 mx5 mx6 mx7 mx35))
libs-y += arch/arm/imx-common/
libs-y += arch/arm/mach-imx/
endif
else
ifneq (,$(filter $(SOC), mx25 mx27 mx5 mx6 mx7 mx7ulp mx31 mx35 mxs vf610))
libs-y += arch/arm/imx-common/
libs-y += arch/arm/mach-imx/
endif
endif

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/cpu/arm926ejs/mx27/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#include <asm/arch/imx-regs.h>
#include <asm/arch/clock.h>
#include <asm/arch/gpio.h>
#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>
#ifdef CONFIG_MMC_MXC
#include <asm/arch/mxcmmc.h>
#endif
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/cpu/arm926ejs/mxs/mxs.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <linux/errno.h>
#include <asm/io.h>
#include <asm/arch/clock.h>
#include <asm/imx-common/dma.h>
#include <asm/mach-imx/dma.h>
#include <asm/arch/gpio.h>
#include <asm/arch/iomux.h>
#include <asm/arch/imx-regs.h>
Expand Down
4 changes: 0 additions & 4 deletions arch/arm/cpu/armv7/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@ obj-$(if $(filter bcm281xx,$(SOC)),y) += bcm281xx/
obj-$(if $(filter bcmcygnus,$(SOC)),y) += bcmcygnus/
obj-$(if $(filter bcmnsp,$(SOC)),y) += bcmnsp/
obj-$(if $(filter ls102xa,$(SOC)),y) += ls102xa/
obj-$(if $(filter mx5,$(SOC)),y) += mx5/
obj-$(CONFIG_MX6) += mx6/
obj-$(CONFIG_MX7) += mx7/
obj-$(CONFIG_ARCH_MX7ULP) += mx7ulp/
obj-$(CONFIG_RMOBILE) += rmobile/
obj-$(if $(filter stv0991,$(SOC)),y) += stv0991/
obj-$(CONFIG_ARCH_SUNXI) += sunxi/
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/cpu/armv7/vf610/generic.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <asm/arch/imx-regs.h>
#include <asm/arch/clock.h>
#include <asm/arch/crm_regs.h>
#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>
#include <netdev.h>
#ifdef CONFIG_FSL_ESDHC
#include <fsl_esdhc.h>
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx25/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
#ifndef __ASM_ARCH_MX25_GPIO_H
#define __ASM_ARCH_MX25_GPIO_H

#include <asm/imx-common/gpio.h>
#include <asm/mach-imx/gpio.h>

#endif
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx25/iomux-mx25.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#ifndef __IOMUX_MX25_H__
#define __IOMUX_MX25_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

/* Pad control groupings */
#define MX25_KPP_ROW_PAD_CTRL PAD_CTL_PUS_100K_UP
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx31/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
#ifndef __ASM_ARCH_MX31_GPIO_H
#define __ASM_ARCH_MX31_GPIO_H

#include <asm/imx-common/gpio.h>
#include <asm/mach-imx/gpio.h>

#endif
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx31/sys_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef _MX31_SYS_PROTO_H_
#define _MX31_SYS_PROTO_H_

#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>

struct mxc_weimcs {
u32 upper;
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx35/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
#ifndef __ASM_ARCH_MX35_GPIO_H
#define __ASM_ARCH_MX35_GPIO_H

#include <asm/imx-common/gpio.h>
#include <asm/mach-imx/gpio.h>

#endif
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx35/iomux-mx35.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#ifndef __IOMUX_MX35_H__
#define __IOMUX_MX35_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

/*
* The naming convention for the pad modes is MX35_PAD_<padname>__<padmode>
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx35/sys_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#ifndef _MX35_SYS_PROTO_H_
#define _MX35_SYS_PROTO_H_

#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>

void mx3_setup_sdram_bank(u32 start_address, u32 ddr2_config, u32 row,
u32 col, u32 dsize, u32 refresh);
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx5/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
#ifndef __ASM_ARCH_MX5_GPIO_H
#define __ASM_ARCH_MX5_GPIO_H

#include <asm/imx-common/gpio.h>
#include <asm/mach-imx/gpio.h>

#endif
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx5/iomux-mx51.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#ifndef __IOMUX_MX51_H__
#define __IOMUX_MX51_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

/* Pad control groupings */
#define MX51_UART_PAD_CTRL (PAD_CTL_PUS_100K_DOWN | PAD_CTL_DSE_HIGH | \
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx5/iomux-mx53.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#ifndef __IOMUX_MX53_H__
#define __IOMUX_MX53_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

/* Pad control groupings */
#define MX53_UART_PAD_CTRL (PAD_CTL_PUS_100K_DOWN | PAD_CTL_DSE_HIGH | \
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx5/sys_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* SPDX-License-Identifier: GPL-2.0+
*/

#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
#ifndef __ASM_ARCH_MX6_GPIO_H
#define __ASM_ARCH_MX6_GPIO_H

#include <asm/imx-common/gpio.h>
#include <asm/mach-imx/gpio.h>

#endif /* __ASM_ARCH_MX6_GPIO_H */
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/imx-regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@
#endif
#define FEC_QUIRK_ENET_MAC

#include <asm/imx-common/regs-lcdif.h>
#include <asm/mach-imx/regs-lcdif.h>
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
#include <asm/types.h>

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/mx6-pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef __ASM_ARCH_MX6_PINS_H__
#define __ASM_ARCH_MX6_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

#define MX6_PAD_DECLARE(prefix, name, pco, mc, mm, sio, si, pc) \
prefix##name = IOMUX_PAD(pco, mc, mm, sio, si, pc)
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/mx6sl_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef __ASM_ARCH_MX6_MX6SL_PINS_H__
#define __ASM_ARCH_MX6_MX6SL_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

enum {
MX6_PAD_ECSPI1_MISO__ECSPI_MISO = IOMUX_PAD(0x0358, 0x0068, 0, 0x0684, 0, 0),
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/mx6sll_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef __ASM_ARCH_IMX6SLL_PINS_H__
#define __ASM_ARCH_IMX6SLL_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

enum {
MX6_PAD_WDOG_B__WDOG1_B = IOMUX_PAD(0x02DC, 0x0014, 0, 0x0000, 0, 0),
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/mx6sx_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef __ASM_ARCH_MX6_MX6_PINS_H__
#define __ASM_ARCH_MX6_MX6_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

enum {
MX6_PAD_GPIO1_IO00__I2C1_SCL = IOMUX_PAD(0x035C, 0x0014, IOMUX_CONFIG_SION | 0, 0x07A8, 1, 0),
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/mx6ul_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef __ASM_ARCH_IMX6UL_PINS_H__
#define __ASM_ARCH_IMX6UL_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

enum {

Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/mx6ull_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef __ASM_ARCH_IMX6ULL_PINS_H__
#define __ASM_ARCH_IMX6ULL_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

enum {
MX6_PAD_BOOT_MODE0__GPIO5_IO10 = IOMUX_PAD(0x0044, 0x0000, IOMUX_CONFIG_LPSR | 5, 0x0000, 0, 0),
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx6/sys_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
* SPDX-License-Identifier: GPL-2.0+
*/

#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx7/gpio.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
#ifndef __ASM_ARCH_MX7_GPIO_H
#define __ASM_ARCH_MX7_GPIO_H

#include <asm/imx-common/gpio.h>
#include <asm/mach-imx/gpio.h>

#endif /* __ASM_ARCH_MX7_GPIO_H */
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx7/imx-regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@
CONFIG_SYS_FSL_JR0_OFFSET)
#define CONFIG_SYS_FSL_MAX_NUM_OF_SEC 1
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
#include <asm/imx-common/regs-lcdif.h>
#include <asm/mach-imx/regs-lcdif.h>
#include <asm/types.h>

extern void imx_get_mac_from_fuse(int dev_id, unsigned char *mac);
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx7/mx7-pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#ifndef __ASM_ARCH_MX7_PINS_H__
#define __ASM_ARCH_MX7_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

#if defined(CONFIG_MX7D)
#include "mx7d_pins.h"
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx7/mx7d_pins.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef __ASM_ARCH_IMX7D_PINS_H__
#define __ASM_ARCH_IMX7D_PINS_H__

#include <asm/imx-common/iomux-v3.h>
#include <asm/mach-imx/iomux-v3.h>

enum {
MX7D_PAD_GPIO1_IO00__GPIO1_IO0 = IOMUX_PAD(0x0030, 0x0000, IOMUX_CONFIG_LPSR | 0, 0x0000, 0, 0),
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx7/sys_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
* SPDX-License-Identifier: GPL-2.0+
*/

#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>

void set_wdog_reset(struct wdog_regs *wdog);
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mx7ulp/sys_proto.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#ifndef _SYS_PROTO_MX7ULP_H_
#define _SYS_PROTO_MX7ULP_H_

#include <asm/imx-common/sys_proto.h>
#include <asm/mach-imx/sys_proto.h>

#define BT0CFG_LPBOOT_MASK 0x1
#define BT0CFG_DUALBOOT_MASK 0x2
Expand Down
8 changes: 4 additions & 4 deletions arch/arm/include/asm/arch-mxs/imx-regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
#ifndef __IMX_REGS_H__
#define __IMX_REGS_H__

#include <asm/imx-common/regs-apbh.h>
#include <asm/mach-imx/regs-apbh.h>
#include <asm/arch/regs-base.h>
#include <asm/imx-common/regs-bch.h>
#include <asm/mach-imx/regs-bch.h>
#include <asm/arch/regs-digctl.h>
#include <asm/imx-common/regs-gpmi.h>
#include <asm/imx-common/regs-lcdif.h>
#include <asm/mach-imx/regs-gpmi.h>
#include <asm/mach-imx/regs-lcdif.h>
#include <asm/arch/regs-i2c.h>
#include <asm/arch/regs-lradc.h>
#include <asm/arch/regs-ocotp.h>
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mxs/regs-clkctrl-mx23.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#ifndef __MX23_REGS_CLKCTRL_H__
#define __MX23_REGS_CLKCTRL_H__

#include <asm/imx-common/regs-common.h>
#include <asm/mach-imx/regs-common.h>

#ifndef __ASSEMBLY__
struct mxs_clkctrl_regs {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mxs/regs-clkctrl-mx28.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#ifndef __MX28_REGS_CLKCTRL_H__
#define __MX28_REGS_CLKCTRL_H__

#include <asm/imx-common/regs-common.h>
#include <asm/mach-imx/regs-common.h>

#ifndef __ASSEMBLY__
struct mxs_clkctrl_regs {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mxs/regs-digctl.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef __MX28_REGS_DIGCTL_H__
#define __MX28_REGS_DIGCTL_H__

#include <asm/imx-common/regs-common.h>
#include <asm/mach-imx/regs-common.h>

#ifndef __ASSEMBLY__
struct mxs_digctl_regs {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mxs/regs-i2c.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#ifndef __MX28_REGS_I2C_H__
#define __MX28_REGS_I2C_H__

#include <asm/imx-common/regs-common.h>
#include <asm/mach-imx/regs-common.h>

#ifndef __ASSEMBLY__
struct mxs_i2c_regs {
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/include/asm/arch-mxs/regs-lradc.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#ifndef __MX28_REGS_LRADC_H__
#define __MX28_REGS_LRADC_H__

#include <asm/imx-common/regs-common.h>
#include <asm/mach-imx/regs-common.h>

#ifndef __ASSEMBLY__
struct mxs_lradc_regs {
Expand Down
Loading

0 comments on commit 552a848

Please sign in to comment.