Commit efe021c4 authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] add sensible names to the ide iops

The outbsync one has further changes to come in the next batch to sort
out some platforms like PPC
parent 22add2b2
...@@ -59,11 +59,11 @@ static void ide_unplugged_insl (unsigned long port, void *addr, u32 count) ...@@ -59,11 +59,11 @@ static void ide_unplugged_insl (unsigned long port, void *addr, u32 count)
{ {
} }
static void ide_unplugged_outb (u8 addr, unsigned long port) static void ide_unplugged_outb (u8 val, unsigned long port)
{ {
} }
static void ide_unplugged_outw (u16 addr, unsigned long port) static void ide_unplugged_outw (u16 val, unsigned long port)
{ {
} }
...@@ -71,7 +71,7 @@ static void ide_unplugged_outsw (unsigned long port, void *addr, u32 count) ...@@ -71,7 +71,7 @@ static void ide_unplugged_outsw (unsigned long port, void *addr, u32 count)
{ {
} }
static void ide_unplugged_outl (u32 addr, unsigned long port) static void ide_unplugged_outl (u32 val, unsigned long port)
{ {
} }
...@@ -125,14 +125,14 @@ static void ide_insl (unsigned long port, void *addr, u32 count) ...@@ -125,14 +125,14 @@ static void ide_insl (unsigned long port, void *addr, u32 count)
insl(port, addr, count); insl(port, addr, count);
} }
static void ide_outb (u8 addr, unsigned long port) static void ide_outb (u8 val, unsigned long port)
{ {
outb(addr, port); outb(val, port);
} }
static void ide_outw (u16 addr, unsigned long port) static void ide_outw (u16 val, unsigned long port)
{ {
outw(addr, port); outw(val, port);
} }
static void ide_outsw (unsigned long port, void *addr, u32 count) static void ide_outsw (unsigned long port, void *addr, u32 count)
...@@ -140,9 +140,9 @@ static void ide_outsw (unsigned long port, void *addr, u32 count) ...@@ -140,9 +140,9 @@ static void ide_outsw (unsigned long port, void *addr, u32 count)
outsw(port, addr, count); outsw(port, addr, count);
} }
static void ide_outl (u32 addr, unsigned long port) static void ide_outl (u32 val, unsigned long port)
{ {
outl(addr, port); outl(val, port);
} }
static void ide_outsl (unsigned long port, void *addr, u32 count) static void ide_outsl (unsigned long port, void *addr, u32 count)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment