r8169: csi_ops signature change.
Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>
This commit is contained in:
parent
24192210a5
commit
52989f0e42
1 changed files with 12 additions and 11 deletions
|
@ -743,8 +743,8 @@ struct rtl8169_private {
|
||||||
} jumbo_ops;
|
} jumbo_ops;
|
||||||
|
|
||||||
struct csi_ops {
|
struct csi_ops {
|
||||||
void (*write)(void __iomem *, int, int);
|
void (*write)(struct rtl8169_private *, int, int);
|
||||||
u32 (*read)(void __iomem *, int);
|
u32 (*read)(struct rtl8169_private *, int);
|
||||||
} csi_ops;
|
} csi_ops;
|
||||||
|
|
||||||
int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
|
int (*set_speed)(struct net_device *, u8 aneg, u16 sp, u8 dpx, u32 adv);
|
||||||
|
@ -4398,15 +4398,12 @@ static void rtl_hw_start_8169(struct net_device *dev)
|
||||||
static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
|
static void rtl_csi_write(struct rtl8169_private *tp, int addr, int value)
|
||||||
{
|
{
|
||||||
if (tp->csi_ops.write)
|
if (tp->csi_ops.write)
|
||||||
tp->csi_ops.write(tp->mmio_addr, addr, value);
|
tp->csi_ops.write(tp, addr, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
|
static u32 rtl_csi_read(struct rtl8169_private *tp, int addr)
|
||||||
{
|
{
|
||||||
if (tp->csi_ops.read)
|
return tp->csi_ops.read ? tp->csi_ops.read(tp, addr) : ~0;
|
||||||
return tp->csi_ops.read(tp->mmio_addr, addr);
|
|
||||||
else
|
|
||||||
return ~0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
|
static void rtl_csi_access_enable(struct rtl8169_private *tp, u32 bits)
|
||||||
|
@ -4427,8 +4424,9 @@ static void rtl_csi_access_enable_2(struct rtl8169_private *tp)
|
||||||
rtl_csi_access_enable(tp, 0x27000000);
|
rtl_csi_access_enable(tp, 0x27000000);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void r8169_csi_write(void __iomem *ioaddr, int addr, int value)
|
static void r8169_csi_write(struct rtl8169_private *tp, int addr, int value)
|
||||||
{
|
{
|
||||||
|
void __iomem *ioaddr = tp->mmio_addr;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
RTL_W32(CSIDR, value);
|
RTL_W32(CSIDR, value);
|
||||||
|
@ -4442,8 +4440,9 @@ static void r8169_csi_write(void __iomem *ioaddr, int addr, int value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static u32 r8169_csi_read(void __iomem *ioaddr, int addr)
|
static u32 r8169_csi_read(struct rtl8169_private *tp, int addr)
|
||||||
{
|
{
|
||||||
|
void __iomem *ioaddr = tp->mmio_addr;
|
||||||
u32 value = ~0x00;
|
u32 value = ~0x00;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
|
@ -4461,8 +4460,9 @@ static u32 r8169_csi_read(void __iomem *ioaddr, int addr)
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void r8402_csi_write(void __iomem *ioaddr, int addr, int value)
|
static void r8402_csi_write(struct rtl8169_private *tp, int addr, int value)
|
||||||
{
|
{
|
||||||
|
void __iomem *ioaddr = tp->mmio_addr;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
RTL_W32(CSIDR, value);
|
RTL_W32(CSIDR, value);
|
||||||
|
@ -4477,8 +4477,9 @@ static void r8402_csi_write(void __iomem *ioaddr, int addr, int value)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static u32 r8402_csi_read(void __iomem *ioaddr, int addr)
|
static u32 r8402_csi_read(struct rtl8169_private *tp, int addr)
|
||||||
{
|
{
|
||||||
|
void __iomem *ioaddr = tp->mmio_addr;
|
||||||
u32 value = ~0x00;
|
u32 value = ~0x00;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue