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
115d2098
Commit
115d2098
authored
Sep 16, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SUNQE]: Fix iomem warnings.
Signed-off-by:
David S. Miller
<
davem@davemloft.net
>
parent
fdf6f967
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
drivers/net/sunqe.c
drivers/net/sunqe.c
+7
-7
drivers/net/sunqe.h
drivers/net/sunqe.h
+3
-3
No files found.
drivers/net/sunqe.c
View file @
115d2098
...
...
@@ -49,7 +49,7 @@ static void qe_set_multicast(struct net_device *dev);
#define QEC_RESET_TRIES 200
static
inline
int
qec_global_reset
(
unsigned
long
gregs
)
static
inline
int
qec_global_reset
(
void
__iomem
*
gregs
)
{
int
tries
=
QEC_RESET_TRIES
;
...
...
@@ -73,8 +73,8 @@ static inline int qec_global_reset(unsigned long gregs)
static
inline
int
qe_stop
(
struct
sunqe
*
qep
)
{
unsigned
long
cregs
=
qep
->
qcregs
;
unsigned
long
mregs
=
qep
->
mregs
;
void
__iomem
*
cregs
=
qep
->
qcregs
;
void
__iomem
*
mregs
=
qep
->
mregs
;
int
tries
;
/* Reset the MACE, then the QEC channel. */
...
...
@@ -130,9 +130,9 @@ static void qe_init_rings(struct sunqe *qep)
static
int
qe_init
(
struct
sunqe
*
qep
,
int
from_irq
)
{
struct
sunqec
*
qecp
=
qep
->
parent
;
unsigned
long
cregs
=
qep
->
qcregs
;
unsigned
long
mregs
=
qep
->
mregs
;
unsigned
long
gregs
=
qecp
->
gregs
;
void
__iomem
*
cregs
=
qep
->
qcregs
;
void
__iomem
*
mregs
=
qep
->
mregs
;
void
__iomem
*
gregs
=
qecp
->
gregs
;
unsigned
char
*
e
=
&
qep
->
dev
->
dev_addr
[
0
];
u32
tmp
;
int
i
;
...
...
@@ -699,7 +699,7 @@ static void qe_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
static
u32
qe_get_link
(
struct
net_device
*
dev
)
{
struct
sunqe
*
qep
=
dev
->
priv
;
unsigned
long
mregs
=
qep
->
mregs
;
void
__iomem
*
mregs
=
qep
->
mregs
;
u8
phyconfig
;
spin_lock_irq
(
&
qep
->
lock
);
...
...
drivers/net/sunqe.h
View file @
115d2098
...
...
@@ -311,7 +311,7 @@ struct qe_init_block {
struct
sunqe
;
struct
sunqec
{
unsigned
long
gregs
;
/* QEC Global Registers */
void
__iomem
*
gregs
;
/* QEC Global Registers */
struct
sunqe
*
qes
[
4
];
/* Each child MACE */
unsigned
int
qec_bursts
;
/* Support burst sizes */
struct
sbus_dev
*
qec_sdev
;
/* QEC's SBUS device */
...
...
@@ -331,8 +331,8 @@ struct sunqe_buffers {
((__u32)((unsigned long)(&(((struct sunqe_buffers *)0)->mem[elem][0]))))
struct
sunqe
{
unsigned
long
qcregs
;
/* QEC per-channel Registers */
unsigned
long
mregs
;
/* Per-channel MACE Registers */
void
__iomem
*
qcregs
;
/* QEC per-channel Registers */
void
__iomem
*
mregs
;
/* Per-channel MACE Registers */
struct
qe_init_block
*
qe_block
;
/* RX and TX descriptors */
__u32
qblock_dvma
;
/* RX and TX descriptors */
spinlock_t
lock
;
/* Protects txfull state */
...
...
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