1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

[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
This commit is contained in:
florian
2012-10-03 16:10:47 +00:00
parent db72b8cfc1
commit 8eed7abf41
3 changed files with 7 additions and 7 deletions

View File

@@ -116,11 +116,11 @@ static int mcs8140_pci_read_config(struct pci_bus *bus,
if (addr != 0) {
switch (size) {
case 1:
v = __raw_readb(addr);
v = readb_relaxed(addr);
break;
case 2:
addr &= ~1;
v = __raw_readw(addr);
v = readw_relaxed(addr);
break;
default:
addr &= ~3;
@@ -155,10 +155,10 @@ static int mcs8140_pci_write_config(struct pci_bus *bus,
if (addr != 0) {
switch (size) {
case 1:
__raw_writeb((u8)val, addr);
writeb_relaxed((u8)val, addr);
break;
case 2:
__raw_writew((u16)val, addr);
writew_relaxed((u16)val, addr);
break;
case 4:
writel_relaxed(val, addr);