diff options
| author | Marek Vasut <marek.vasut@gmail.com> | 2011-09-11 18:05:39 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-30 22:01:03 +0200 | 
| commit | 8edcc6f221cbd4e718412156a7a33d43d3cfa442 (patch) | |
| tree | 04fa40c39780a4f6a3d9efcd85b3d51d3768940a | |
| parent | 17fb268cf7ac0f6fc6c3102b138c46b3c1b626e5 (diff) | |
| download | olio-uboot-2014.01-8edcc6f221cbd4e718412156a7a33d43d3cfa442.tar.xz olio-uboot-2014.01-8edcc6f221cbd4e718412156a7a33d43d3cfa442.zip | |
FEC: Move imx_get_mac_from_fuse() definition to fec_mxc.h
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Cc: Ben Warren <biggerbadderben@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Detlev Zundel <dzu@denx.de>
| -rw-r--r-- | arch/arm/include/asm/arch-mx25/imx-regs.h | 1 | ||||
| -rw-r--r-- | arch/arm/include/asm/arch-mx27/imx-regs.h | 1 | ||||
| -rw-r--r-- | arch/arm/include/asm/arch-mx35/imx-regs.h | 2 | ||||
| -rw-r--r-- | arch/arm/include/asm/arch-mx5/imx-regs.h | 2 | ||||
| -rw-r--r-- | drivers/net/fec_mxc.h | 2 | 
5 files changed, 2 insertions, 6 deletions
| diff --git a/arch/arm/include/asm/arch-mx25/imx-regs.h b/arch/arm/include/asm/arch-mx25/imx-regs.h index 47fc51781..eece138b4 100644 --- a/arch/arm/include/asm/arch-mx25/imx-regs.h +++ b/arch/arm/include/asm/arch-mx25/imx-regs.h @@ -36,7 +36,6 @@  #ifndef __ASSEMBLY__  #ifdef CONFIG_FEC_MXC  extern void mx25_fec_init_pins(void); -extern void imx_get_mac_from_fuse(unsigned char *mac);  #endif  /* Clock Control Module (CCM) registers */ diff --git a/arch/arm/include/asm/arch-mx27/imx-regs.h b/arch/arm/include/asm/arch-mx27/imx-regs.h index b4b2fe61a..83ab21666 100644 --- a/arch/arm/include/asm/arch-mx27/imx-regs.h +++ b/arch/arm/include/asm/arch-mx27/imx-regs.h @@ -34,7 +34,6 @@ extern void mx27_uart1_init_pins(void);  #ifdef CONFIG_FEC_MXC  extern void mx27_fec_init_pins(void); -extern void imx_get_mac_from_fuse(unsigned char *mac);  #endif /* CONFIG_FEC_MXC */  #ifdef CONFIG_MXC_MMC diff --git a/arch/arm/include/asm/arch-mx35/imx-regs.h b/arch/arm/include/asm/arch-mx35/imx-regs.h index e741fb0bc..0c566f27c 100644 --- a/arch/arm/include/asm/arch-mx35/imx-regs.h +++ b/arch/arm/include/asm/arch-mx35/imx-regs.h @@ -178,8 +178,6 @@  #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))  #include <asm/types.h> -extern void imx_get_mac_from_fuse(unsigned char *mac); -  enum mxc_main_clocks {  	CPU_CLK,  	AHB_CLK, diff --git a/arch/arm/include/asm/arch-mx5/imx-regs.h b/arch/arm/include/asm/arch-mx5/imx-regs.h index a4e680b8d..098c30090 100644 --- a/arch/arm/include/asm/arch-mx5/imx-regs.h +++ b/arch/arm/include/asm/arch-mx5/imx-regs.h @@ -282,8 +282,6 @@  #if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))  #include <asm/types.h> -extern void imx_get_mac_from_fuse(unsigned char *mac); -  #define __REG(x)	(*((volatile u32 *)(x)))  #define __REG16(x)	(*((volatile u16 *)(x)))  #define __REG8(x)	(*((volatile u8 *)(x))) diff --git a/drivers/net/fec_mxc.h b/drivers/net/fec_mxc.h index 1a203888b..8b2664517 100644 --- a/drivers/net/fec_mxc.h +++ b/drivers/net/fec_mxc.h @@ -32,6 +32,8 @@  #ifndef __FEC_MXC_H  #define __FEC_MXC_H +void imx_get_mac_from_fuse(unsigned char *mac); +  /**   * Layout description of the FEC   */ |