diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2015-08-25 09:04:12 +0300 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2016-03-11 08:53:31 +0000 |
commit | d99434e1760b94e08512821b5a05992398c1aa9e (patch) | |
tree | e2f871abcee6bf67825251a124fb8da5a813fd31 /arch/xtensa/platforms | |
parent | abfbd89595e91d5108f807e10bbd2152bc55f36b (diff) | |
download | op-kernel-dev-d99434e1760b94e08512821b5a05992398c1aa9e.zip op-kernel-dev-d99434e1760b94e08512821b5a05992398c1aa9e.tar.gz |
xtensa: xtfpga: fix ethernet controller endianness
Ethernet controller is attached to XTFPGA boards as native endian device,
mark it as such in DTS and pass correct endianness in platform data.
This makes network functional on big-endian CPUs.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'arch/xtensa/platforms')
-rw-r--r-- | arch/xtensa/platforms/xtfpga/setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/xtensa/platforms/xtfpga/setup.c b/arch/xtensa/platforms/xtfpga/setup.c index b7f468a..b509d1f 100644 --- a/arch/xtensa/platforms/xtfpga/setup.c +++ b/arch/xtensa/platforms/xtfpga/setup.c @@ -223,6 +223,7 @@ static struct ethoc_platform_data ethoc_pdata = { */ .hwaddr = { 0x00, 0x50, 0xc2, 0x13, 0x6f, 0 }, .phy_id = -1, + .big_endian = XCHAL_HAVE_BE, }; static struct platform_device ethoc_device = { |