Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
52989f0e
Commit
52989f0e
authored
Jul 06, 2012
by
Francois Romieu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
r8169: csi_ops signature change.
Signed-off-by:
Francois Romieu
<
romieu@fr.zoreil.com
>
parent
24192210
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
11 deletions
+12
-11
drivers/net/ethernet/realtek/r8169.c
drivers/net/ethernet/realtek/r8169.c
+12
-11
No files found.
drivers/net/ethernet/realtek/r8169.c
View file @
52989f0e
...
...
@@ -743,8 +743,8 @@ struct rtl8169_private {
}
jumbo_ops
;
struct
csi_ops
{
void
(
*
write
)(
void
__iomem
*
,
int
,
int
);
u32
(
*
read
)(
void
__iomem
*
,
int
);
void
(
*
write
)(
struct
rtl8169_private
*
,
int
,
int
);
u32
(
*
read
)(
struct
rtl8169_private
*
,
int
);
}
csi_ops
;
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
)
{
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
)
{
if
(
tp
->
csi_ops
.
read
)
return
tp
->
csi_ops
.
read
(
tp
->
mmio_addr
,
addr
);
else
return
~
0
;
return
tp
->
csi_ops
.
read
?
tp
->
csi_ops
.
read
(
tp
,
addr
)
:
~
0
;
}
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
);
}
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
;
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
;
unsigned
int
i
;
...
...
@@ -4461,8 +4460,9 @@ static u32 r8169_csi_read(void __iomem *ioaddr, int addr)
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
;
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
;
unsigned
int
i
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment