diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-23 05:30:31 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-06-23 05:30:31 +0000 |
commit | cad52677420d82279b3b97d5268bda415c90dd54 (patch) | |
tree | 3cd00089a669c6d76ef6930ae6325ce43d15b9d4 /target/linux/adm5120-2.6/files | |
parent | 239f351507c44e80d175e3af416dfeffc2d463f0 (diff) |
[adm5120] fix hardware byte swapping to work in little endian mode as well
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7712 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/adm5120-2.6/files')
-rw-r--r-- | target/linux/adm5120-2.6/files/arch/mips/adm5120/adm5120_info.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/adm5120-2.6/files/arch/mips/adm5120/adm5120_info.c b/target/linux/adm5120-2.6/files/arch/mips/adm5120/adm5120_info.c index fea52ffca..570244b24 100644 --- a/target/linux/adm5120-2.6/files/arch/mips/adm5120/adm5120_info.c +++ b/target/linux/adm5120-2.6/files/arch/mips/adm5120/adm5120_info.c @@ -904,12 +904,12 @@ void __init adm5120_swab_test(void) u32 t1,t2; t1 = 0x1234; - t2 = swab16(t1); + t2 = __arch__swab16(t1); printk("hardware swab16 test %s, data:0x%04X, result:0x%04X\n", (t2 == 0x3412) ? "passed" :"failed", t1, t2); t1 = 0x12345678; - t2 = swab32(t1); + t2 = __arch__swab32(t1); printk("hardware swab32 test %s, data:0x%08X, result:0x%08X\n", (t2 == 0x78563412) ? "passed" :"failed", t1, t2); |