net: fec: use CONFIG_ARM instead of CONFIG_ARCH_MXC/SOC_IMX28
As Arnd Bergmann points out, using CONFIG_ARCH_MXC and/or SOC_IMX28 is wrong if some other ARM platform uses this device - the operation of the driver would depend on an unrelated ARM platform that might or might not be set for multi-platform kernels. Prior to my previous patch, any other platforms using it would have been broken already due to having the cbd_datlen/cbd_sc fields in the wrong order, but byte ordering correctly, so no such platforms can exist and work today. In any case, it seems likely that only Freescale SoCs use this part, and those are little-endian on ARM, so CONFIG_ARM is safe for them. Signed-off-by: Johannes Berg <johannes@sipsolutions.net> Reviewed-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
62f2aaabcf
commit
05f3b50ea8
|
@ -19,8 +19,7 @@
|
|||
#include <linux/timecounter.h>
|
||||
|
||||
#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
|
||||
defined(CONFIG_M520x) || defined(CONFIG_M532x) || \
|
||||
defined(CONFIG_ARCH_MXC) || defined(CONFIG_SOC_IMX28)
|
||||
defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
|
||||
/*
|
||||
* Just figures, Motorola would have to change the offsets for
|
||||
* registers in the same peripheral device on different models
|
||||
|
@ -192,10 +191,9 @@
|
|||
* Define the buffer descriptor structure.
|
||||
*
|
||||
* Evidently, ARM SoCs have the FEC block generated in a
|
||||
* little endian mode; or at least ARCH_MXC/SOC_IMX28 do,
|
||||
* so adjust endianness accordingly.
|
||||
* little endian mode so adjust endianness accordingly.
|
||||
*/
|
||||
#if defined(CONFIG_ARCH_MXC) || defined(CONFIG_SOC_IMX28)
|
||||
#if defined(CONFIG_ARM)
|
||||
#define fec32_to_cpu le32_to_cpu
|
||||
#define fec16_to_cpu le16_to_cpu
|
||||
#define cpu_to_fec32 cpu_to_le32
|
||||
|
|
|
@ -2153,8 +2153,7 @@ static int fec_enet_get_regs_len(struct net_device *ndev)
|
|||
|
||||
/* List of registers that can be safety be read to dump them with ethtool */
|
||||
#if defined(CONFIG_M523x) || defined(CONFIG_M527x) || defined(CONFIG_M528x) || \
|
||||
defined(CONFIG_M520x) || defined(CONFIG_M532x) || \
|
||||
defined(CONFIG_ARCH_MXC) || defined(CONFIG_SOC_IMX28)
|
||||
defined(CONFIG_M520x) || defined(CONFIG_M532x) || defined(CONFIG_ARM)
|
||||
static u32 fec_enet_register_offset[] = {
|
||||
FEC_IEVENT, FEC_IMASK, FEC_R_DES_ACTIVE_0, FEC_X_DES_ACTIVE_0,
|
||||
FEC_ECNTRL, FEC_MII_DATA, FEC_MII_SPEED, FEC_MIB_CTRLSTAT, FEC_R_CNTRL,
|
||||
|
|
Loading…
Reference in New Issue