summaryrefslogtreecommitdiffstats
path: root/target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c
diff options
context:
space:
mode:
authorflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-10-03 16:10:47 +0000
committerflorian <florian@3c298f89-4303-0410-b956-a3cf2f4a3e73>2012-10-03 16:10:47 +0000
commit8eed7abf4186c92a1177971a6fa435fcd3ca7e6f (patch)
treeff511aeef7ff8bffba7e866890a191f71fe0a3d0 /target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c
parentdb72b8cfc10b33ea74f7b6ef2781d3f34c2cd279 (diff)
[mcs814x] more convertions to {read,write}_relaxed I/O accessors
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33604 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c')
-rw-r--r--target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c b/target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c
index d874e71a1..fe95ea7f7 100644
--- a/target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c
+++ b/target/linux/mcs814x/files-3.3/drivers/net/ethernet/mcs8140/nuport_mac.c
@@ -117,7 +117,7 @@ static inline u32 nuport_mac_readl(void __iomem *reg)
static inline u8 nuport_mac_readb(void __iomem *reg)
{
- return __raw_readb(reg);
+ return readb_relaxed(reg);
}
static inline void nuport_mac_writel(u32 value, void __iomem *reg)