Browse Source

arm: Add explicit include of <asm/mach-types.h>

Rather than relying on common.h to provide this include, which is going
away at some point, include it explicitly in each file.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
Simon Glass 7 years ago
parent
commit
c62db35d52
55 changed files with 55 additions and 0 deletions
  1. 1 0
      arch/arm/lib/spl.c
  2. 1 0
      board/Barix/ipam390/ipam390.c
  3. 1 0
      board/LaCie/edminiv2/edminiv2.c
  4. 1 0
      board/LaCie/net2big_v2/net2big_v2.c
  5. 1 0
      board/LaCie/netspace_v2/netspace_v2.c
  6. 1 0
      board/Marvell/aspenite/aspenite.c
  7. 1 0
      board/Marvell/gplugd/gplugd.c
  8. 1 0
      board/Marvell/guruplug/guruplug.c
  9. 1 0
      board/Marvell/openrd/openrd.c
  10. 1 0
      board/Marvell/sheevaplug/sheevaplug.c
  11. 1 0
      board/Seagate/dockstar/dockstar.c
  12. 1 0
      board/Seagate/goflexhome/goflexhome.c
  13. 1 0
      board/Seagate/nas220/nas220.c
  14. 1 0
      board/amazon/kc1/kc1.c
  15. 1 0
      board/armltd/integrator/integrator.c
  16. 1 0
      board/armltd/vexpress/vexpress_common.c
  17. 1 0
      board/atmel/at91rm9200ek/at91rm9200ek.c
  18. 1 0
      board/atmel/at91sam9261ek/at91sam9261ek.c
  19. 1 0
      board/atmel/at91sam9263ek/at91sam9263ek.c
  20. 1 0
      board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
  21. 1 0
      board/atmel/at91sam9rlek/at91sam9rlek.c
  22. 1 0
      board/atmel/at91sam9x5ek/at91sam9x5ek.c
  23. 1 0
      board/bluewater/gurnard/gurnard.c
  24. 1 0
      board/bluewater/snapper9260/snapper9260.c
  25. 1 0
      board/cirrus/edb93xx/edb93xx.c
  26. 1 0
      board/davinci/da8xxevm/da850evm.c
  27. 1 0
      board/davinci/da8xxevm/omapl138_lcdk.c
  28. 1 0
      board/davinci/ea20/ea20.c
  29. 1 0
      board/esd/meesc/meesc.c
  30. 1 0
      board/freescale/mx35pdk/mx35pdk.c
  31. 1 0
      board/gumstix/duovero/duovero.c
  32. 1 0
      board/h2200/h2200.c
  33. 1 0
      board/imx31_phycore/imx31_phycore.c
  34. 1 0
      board/lego/ev3/legoev3.c
  35. 1 0
      board/mini-box/picosam9g45/picosam9g45.c
  36. 1 0
      board/nvidia/seaboard/seaboard.c
  37. 1 0
      board/overo/common.c
  38. 1 0
      board/ronetix/pm9261/pm9261.c
  39. 1 0
      board/ronetix/pm9263/pm9263.c
  40. 1 0
      board/ronetix/pm9g45/pm9g45.c
  41. 1 0
      board/samsung/goni/goni.c
  42. 1 0
      board/samsung/smdkc100/smdkc100.c
  43. 1 0
      board/samsung/universal_c210/universal.c
  44. 1 0
      board/siemens/common/board.c
  45. 1 0
      board/spear/spear300/spear300.c
  46. 1 0
      board/spear/spear310/spear310.c
  47. 1 0
      board/spear/spear320/spear320.c
  48. 1 0
      board/spear/spear600/spear600.c
  49. 1 0
      board/spear/x600/x600.c
  50. 1 0
      board/ti/omap5_uevm/evm.c
  51. 1 0
      board/ti/panda/panda.c
  52. 1 0
      board/toradex/colibri_pxa270/colibri_pxa270.c
  53. 1 0
      board/toradex/common/tdx-cfg-block.c
  54. 1 0
      board/zipitz2/zipitz2.c
  55. 1 0
      drivers/usb/host/ehci-mx6.c

+ 1 - 0
arch/arm/lib/spl.c

@@ -12,6 +12,7 @@
 #include <spl.h>
 #include <image.h>
 #include <linux/compiler.h>
+#include <asm/mach-types.h>
 
 #ifndef CONFIG_SPL_DM
 /* Pointer to as well as the global data structure for SPL */

+ 1 - 0
board/Barix/ipam390/ipam390.c

@@ -29,6 +29,7 @@
 #include <asm/gpio.h>
 #include <hwconfig.h>
 #include <bootstage.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/LaCie/edminiv2/edminiv2.c

@@ -14,6 +14,7 @@
 #include "../common/common.h"
 #include <spl.h>
 #include <ns16550.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/LaCie/net2big_v2/net2big_v2.c

@@ -12,6 +12,7 @@
 #include <common.h>
 #include <command.h>
 #include <i2c.h>
+#include <asm/mach-types.h>
 #include <asm/arch/cpu.h>
 #include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>

+ 1 - 0
board/LaCie/netspace_v2/netspace_v2.c

@@ -11,6 +11,7 @@
 
 #include <common.h>
 #include <command.h>
+#include <asm/mach-types.h>
 #include <asm/arch/cpu.h>
 #include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>

+ 1 - 0
board/Marvell/aspenite/aspenite.c

@@ -9,6 +9,7 @@
 
 #include <common.h>
 #include <mvmfp.h>
+#include <asm/mach-types.h>
 #include <asm/arch/cpu.h>
 #include <asm/arch/mfp.h>
 #include <asm/arch/armada100.h>

+ 1 - 0
board/Marvell/gplugd/gplugd.c

@@ -19,6 +19,7 @@
 #include <asm/arch/armada100.h>
 #include <asm/gpio.h>
 #include <miiphy.h>
+#include <asm/mach-types.h>
 
 #ifdef CONFIG_ARMADA100_FEC
 #include <net.h>

+ 1 - 0
board/Marvell/guruplug/guruplug.c

@@ -8,6 +8,7 @@
 
 #include <common.h>
 #include <miiphy.h>
+#include <asm/mach-types.h>
 #include <asm/arch/cpu.h>
 #include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>

+ 1 - 0
board/Marvell/openrd/openrd.c

@@ -13,6 +13,7 @@
 
 #include <common.h>
 #include <miiphy.h>
+#include <asm/mach-types.h>
 #include <asm/arch/cpu.h>
 #include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>

+ 1 - 0
board/Marvell/sheevaplug/sheevaplug.c

@@ -8,6 +8,7 @@
 
 #include <common.h>
 #include <miiphy.h>
+#include <asm/mach-types.h>
 #include <asm/arch/cpu.h>
 #include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>

+ 1 - 0
board/Seagate/dockstar/dockstar.c

@@ -15,6 +15,7 @@
 #include <asm/arch/mpp.h>
 #include <asm/arch/cpu.h>
 #include <asm/io.h>
+#include <asm/mach-types.h>
 #include "dockstar.h"
 
 DECLARE_GLOBAL_DATA_PTR;

+ 1 - 0
board/Seagate/goflexhome/goflexhome.c

@@ -14,6 +14,7 @@
 
 #include <common.h>
 #include <miiphy.h>
+#include <asm/mach-types.h>
 #include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>
 #include <asm/arch/cpu.h>

+ 1 - 0
board/Seagate/nas220/nas220.c

@@ -11,6 +11,7 @@
 
 #include <common.h>
 #include <miiphy.h>
+#include <asm/mach-types.h>
 #include <asm/arch/soc.h>
 #include <asm/arch/mpp.h>
 #include <asm/arch/cpu.h>

+ 1 - 0
board/amazon/kc1/kc1.c

@@ -17,6 +17,7 @@
 #include <asm/emif.h>
 #include <twl6030.h>
 #include "kc1.h"
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/armltd/integrator/integrator.c

@@ -24,6 +24,7 @@
 #include <dm/platform_data/serial_pl01x.h>
 #include "arm-ebi.h"
 #include "integrator-sc.h"
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/armltd/vexpress/vexpress_common.c

@@ -21,6 +21,7 @@
 #include <errno.h>
 #include <netdev.h>
 #include <asm/io.h>
+#include <asm/mach-types.h>
 #include <asm/arch/systimer.h>
 #include <asm/arch/sysctrl.h>
 #include <asm/arch/wdt.h>

+ 1 - 0
board/atmel/at91rm9200ek/at91rm9200ek.c

@@ -12,6 +12,7 @@
 
 #include <common.h>
 #include <netdev.h>
+#include <asm/mach-types.h>
 #include <asm/arch/hardware.h>
 #include <asm/arch/at91_pio.h>
 #include <asm/arch/at91_common.h>

+ 1 - 0
board/atmel/at91sam9261ek/at91sam9261ek.c

@@ -21,6 +21,7 @@
 #include <net.h>
 #include <netdev.h>
 #endif
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/atmel/at91sam9263ek/at91sam9263ek.c

@@ -20,6 +20,7 @@
 #include <asm/arch/hardware.h>
 #include <lcd.h>
 #include <atmel_lcdc.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c

@@ -18,6 +18,7 @@
 #include <lcd.h>
 #include <linux/mtd/nand.h>
 #include <atmel_lcdc.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/atmel/at91sam9rlek/at91sam9rlek.c

@@ -9,6 +9,7 @@
 #include <common.h>
 #include <debug_uart.h>
 #include <asm/io.h>
+#include <asm/mach-types.h>
 #include <asm/arch/at91sam9rl.h>
 #include <asm/arch/at91sam9rl_matrix.h>
 #include <asm/arch/at91sam9_smc.h>

+ 1 - 0
board/atmel/at91sam9x5ek/at91sam9x5ek.c

@@ -19,6 +19,7 @@
 #include <nand.h>
 #include <version.h>
 #endif
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/bluewater/gurnard/gurnard.c

@@ -21,6 +21,7 @@
 #include <spi.h>
 #include <asm/gpio.h>
 #include <asm/io.h>
+#include <asm/mach-types.h>
 #include <asm/arch/at91sam9g45_matrix.h>
 #include <asm/arch/at91sam9_smc.h>
 #include <asm/arch/at91_common.h>

+ 1 - 0
board/bluewater/snapper9260/snapper9260.c

@@ -12,6 +12,7 @@
 #include <dm.h>
 #include <asm/io.h>
 #include <asm/gpio.h>
+#include <asm/mach-types.h>
 #include <asm/arch/at91sam9260_matrix.h>
 #include <asm/arch/at91sam9_smc.h>
 #include <asm/arch/at91_common.h>

+ 1 - 0
board/cirrus/edb93xx/edb93xx.c

@@ -18,6 +18,7 @@
 #include <common.h>
 #include <netdev.h>
 #include <asm/io.h>
+#include <asm/mach-types.h>
 #include <asm/arch/ep93xx.h>
 
 DECLARE_GLOBAL_DATA_PTR;

+ 1 - 0
board/davinci/da8xxevm/da850evm.c

@@ -23,6 +23,7 @@
 #include <asm/arch/davinci_misc.h>
 #include <linux/errno.h>
 #include <hwconfig.h>
+#include <asm/mach-types.h>
 
 #ifdef CONFIG_MMC_DAVINCI
 #include <mmc.h>

+ 1 - 0
board/davinci/da8xxevm/omapl138_lcdk.c

@@ -19,6 +19,7 @@
 #include <asm/ti-common/davinci_nand.h>
 #include <asm/io.h>
 #include <linux/errno.h>
+#include <asm/mach-types.h>
 #include <asm/arch/davinci_misc.h>
 #ifdef CONFIG_MMC_DAVINCI
 #include <mmc.h>

+ 1 - 0
board/davinci/ea20/ea20.c

@@ -18,6 +18,7 @@
 #include <i2c.h>
 #include <net.h>
 #include <netdev.h>
+#include <asm/mach-types.h>
 #include <asm/arch/hardware.h>
 #include <asm/ti-common/davinci_nand.h>
 #include <asm/arch/emac_defs.h>

+ 1 - 0
board/esd/meesc/meesc.c

@@ -13,6 +13,7 @@
 #include <common.h>
 #include <asm/io.h>
 #include <asm/gpio.h>
+#include <asm/mach-types.h>
 #include <asm/arch/at91sam9_smc.h>
 #include <asm/arch/at91_common.h>
 #include <asm/arch/at91_pmc.h>

+ 1 - 0
board/freescale/mx35pdk/mx35pdk.c

@@ -24,6 +24,7 @@
 #include <asm/gpio.h>
 #include <asm/arch/sys_proto.h>
 #include <netdev.h>
+#include <asm/mach-types.h>
 
 #ifndef CONFIG_BOARD_LATE_INIT
 #error "CONFIG_BOARD_LATE_INIT must be set for this board"

+ 1 - 0
board/gumstix/duovero/duovero.c

@@ -14,6 +14,7 @@
 #include <asm/arch/clock.h>
 #include <asm/arch/gpio.h>
 #include <asm/gpio.h>
+#include <asm/mach-types.h>
 
 #include "duovero_mux_data.h"
 

+ 1 - 0
board/h2200/h2200.c

@@ -11,6 +11,7 @@
 #include <asm/arch/pxa-regs.h>
 #include <asm/io.h>
 #include <usb.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/imx31_phycore/imx31_phycore.c

@@ -11,6 +11,7 @@
 #include <netdev.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/imx-regs.h>
+#include <asm/mach-types.h>
 #include <asm/arch/sys_proto.h>
 
 DECLARE_GLOBAL_DATA_PTR;

+ 1 - 0
board/lego/ev3/legoev3.c

@@ -25,6 +25,7 @@
 #include <asm/arch/davinci_misc.h>
 #include <linux/errno.h>
 #include <hwconfig.h>
+#include <asm/mach-types.h>
 
 #ifdef CONFIG_MMC_DAVINCI
 #include <mmc.h>

+ 1 - 0
board/mini-box/picosam9g45/picosam9g45.c

@@ -27,6 +27,7 @@
 #include <net.h>
 #endif
 #include <netdev.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/nvidia/seaboard/seaboard.c

@@ -7,6 +7,7 @@
 
 #include <common.h>
 #include <asm/io.h>
+#include <asm/mach-types.h>
 #include <asm/arch/tegra.h>
 #include <asm/arch-tegra/board.h>
 #include <asm/arch/clock.h>

+ 1 - 0
board/overo/common.c

@@ -18,6 +18,7 @@
 #include <asm/arch/mux.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/gpio.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/ronetix/pm9261/pm9261.c

@@ -26,6 +26,7 @@
 #include <net.h>
 #endif
 #include <netdev.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/ronetix/pm9263/pm9263.c

@@ -25,6 +25,7 @@
 #include <net.h>
 #endif
 #include <netdev.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/ronetix/pm9g45/pm9g45.c

@@ -25,6 +25,7 @@
 #include <net.h>
 #endif
 #include <netdev.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/samsung/goni/goni.c

@@ -17,6 +17,7 @@
 #include <samsung/misc.h>
 #include <usb.h>
 #include <usb_mass_storage.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/samsung/smdkc100/smdkc100.c

@@ -11,6 +11,7 @@
 #include <asm/io.h>
 #include <asm/arch/sromc.h>
 #include <netdev.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/samsung/universal_c210/universal.c

@@ -23,6 +23,7 @@
 #include <libtizen.h>
 #include <samsung/misc.h>
 #include <usb_mass_storage.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/siemens/common/board.c

@@ -28,6 +28,7 @@
 #include <miiphy.h>
 #include <cpsw.h>
 #include <watchdog.h>
+#include <asm/mach-types.h>
 #include "../common/factoryset.h"
 
 DECLARE_GLOBAL_DATA_PTR;

+ 1 - 0
board/spear/spear300/spear300.c

@@ -11,6 +11,7 @@
 #include <nand.h>
 #include <asm/io.h>
 #include <linux/mtd/fsmc_nand.h>
+#include <asm/mach-types.h>
 #include <asm/arch/hardware.h>
 #include <asm/arch/spr_defs.h>
 #include <asm/arch/spr_misc.h>

+ 1 - 0
board/spear/spear310/spear310.c

@@ -12,6 +12,7 @@
 #include <nand.h>
 #include <asm/io.h>
 #include <linux/mtd/fsmc_nand.h>
+#include <asm/mach-types.h>
 #include <asm/arch/hardware.h>
 #include <asm/arch/spr_defs.h>
 #include <asm/arch/spr_misc.h>

+ 1 - 0
board/spear/spear320/spear320.c

@@ -12,6 +12,7 @@
 #include <nand.h>
 #include <asm/io.h>
 #include <linux/mtd/fsmc_nand.h>
+#include <asm/mach-types.h>
 #include <asm/arch/hardware.h>
 #include <asm/arch/spr_defs.h>
 #include <asm/arch/spr_misc.h>

+ 1 - 0
board/spear/spear600/spear600.c

@@ -11,6 +11,7 @@
 #include <nand.h>
 #include <asm/io.h>
 #include <linux/mtd/fsmc_nand.h>
+#include <asm/mach-types.h>
 #include <asm/arch/hardware.h>
 #include <asm/arch/spr_defs.h>
 #include <asm/arch/spr_misc.h>

+ 1 - 0
board/spear/x600/x600.c

@@ -14,6 +14,7 @@
 #include <phy.h>
 #include <rtc.h>
 #include <asm/io.h>
+#include <asm/mach-types.h>
 #include <asm/arch/hardware.h>
 #include <asm/arch/spr_defs.h>
 #include <asm/arch/spr_misc.h>

+ 1 - 0
board/ti/omap5_uevm/evm.c

@@ -24,6 +24,7 @@
 #include <sata.h>
 #include <usb.h>
 #include <asm/gpio.h>
+#include <asm/mach-types.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/ehci.h>
 #include <asm/ehci-omap.h>

+ 1 - 0
board/ti/panda/panda.c

@@ -6,6 +6,7 @@
  * SPDX-License-Identifier:	GPL-2.0+
  */
 #include <common.h>
+#include <asm/mach-types.h>
 #include <asm/arch/sys_proto.h>
 #include <asm/arch/mmc_host_def.h>
 #include <asm/arch/clock.h>

+ 1 - 0
board/toradex/colibri_pxa270/colibri_pxa270.c

@@ -19,6 +19,7 @@
 #include <netdev.h>
 #include <serial.h>
 #include <usb.h>
+#include <asm/mach-types.h>
 #include "../common/tdx-common.h"
 
 DECLARE_GLOBAL_DATA_PTR;

+ 1 - 0
board/toradex/common/tdx-cfg-block.c

@@ -23,6 +23,7 @@
 #include <malloc.h>
 #include <mmc.h>
 #include <nand.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
board/zipitz2/zipitz2.c

@@ -16,6 +16,7 @@
 #include <spi.h>
 #include <asm/io.h>
 #include <usb.h>
+#include <asm/mach-types.h>
 
 DECLARE_GLOBAL_DATA_PTR;
 

+ 1 - 0
drivers/usb/host/ehci-mx6.c

@@ -17,6 +17,7 @@
 #include <asm/imx-common/iomux-v3.h>
 #include <asm/imx-common/sys_proto.h>
 #include <dm.h>
+#include <asm/mach-types.h>
 #include <power/regulator.h>
 
 #include "ehci.h"