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
202f6e8f
Commit
202f6e8f
authored
Oct 17, 2002
by
Tim Hockin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drivers/net/eepro100.c: eliminate speedo_intrmask
parent
12d17327
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
26 deletions
+1
-26
drivers/net/eepro100.c
drivers/net/eepro100.c
+1
-26
No files found.
drivers/net/eepro100.c
View file @
202f6e8f
...
@@ -492,7 +492,6 @@ struct speedo_private {
...
@@ -492,7 +492,6 @@ struct speedo_private {
unsigned
short
partner
;
/* Link partner caps. */
unsigned
short
partner
;
/* Link partner caps. */
struct
mii_if_info
mii_if
;
/* MII API hooks, info */
struct
mii_if_info
mii_if
;
/* MII API hooks, info */
u32
msg_enable
;
/* debug message level */
u32
msg_enable
;
/* debug message level */
unsigned
char
intmask
;
/* Saved interrupt mask bits */
#ifdef CONFIG_PM
#ifdef CONFIG_PM
u32
pm_state
[
16
];
u32
pm_state
[
16
];
#endif
#endif
...
@@ -541,7 +540,6 @@ static void speedo_refill_rx_buffers(struct net_device *dev, int force);
...
@@ -541,7 +540,6 @@ static void speedo_refill_rx_buffers(struct net_device *dev, int force);
static
int
speedo_rx
(
struct
net_device
*
dev
);
static
int
speedo_rx
(
struct
net_device
*
dev
);
static
void
speedo_tx_buffer_gc
(
struct
net_device
*
dev
);
static
void
speedo_tx_buffer_gc
(
struct
net_device
*
dev
);
static
void
speedo_interrupt
(
int
irq
,
void
*
dev_instance
,
struct
pt_regs
*
regs
);
static
void
speedo_interrupt
(
int
irq
,
void
*
dev_instance
,
struct
pt_regs
*
regs
);
static
void
speedo_intrmask
(
void
*
dev
,
int
onoff
);
static
int
speedo_close
(
struct
net_device
*
dev
);
static
int
speedo_close
(
struct
net_device
*
dev
);
static
struct
net_device_stats
*
speedo_get_stats
(
struct
net_device
*
dev
);
static
struct
net_device_stats
*
speedo_get_stats
(
struct
net_device
*
dev
);
static
int
speedo_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
rq
,
int
cmd
);
static
int
speedo_ioctl
(
struct
net_device
*
dev
,
struct
ifreq
*
rq
,
int
cmd
);
...
@@ -1557,29 +1555,6 @@ static void speedo_tx_buffer_gc(struct net_device *dev)
...
@@ -1557,29 +1555,6 @@ static void speedo_tx_buffer_gc(struct net_device *dev)
sp
->
dirty_tx
=
dirty_tx
;
sp
->
dirty_tx
=
dirty_tx
;
}
}
/*
* Interrupt mask control
*/
static
void
speedo_intrmask
(
void
*
dev_instance
,
int
onoff
)
{
struct
net_device
*
dev
=
(
struct
net_device
*
)
dev_instance
;
struct
speedo_private
*
sp
;
long
ioaddr
;
sp
=
(
struct
speedo_private
*
)
dev
->
priv
;
ioaddr
=
dev
->
base_addr
;
if
(
onoff
)
{
/* enable */
outb
(
sp
->
intmask
,
ioaddr
+
SCBIntmask
);
}
else
{
/* disable */
sp
->
intmask
=
inb
(
ioaddr
+
SCBIntmask
);
outw
(
SCBMaskAll
,
ioaddr
+
SCBCmd
);
}
}
/* The interrupt handler does all of the Rx thread work and cleans up
/* The interrupt handler does all of the Rx thread work and cleans up
after the Tx thread. */
after the Tx thread. */
static
void
speedo_interrupt
(
int
irq
,
void
*
dev_instance
,
struct
pt_regs
*
regs
)
static
void
speedo_interrupt
(
int
irq
,
void
*
dev_instance
,
struct
pt_regs
*
regs
)
...
@@ -1908,7 +1883,7 @@ speedo_close(struct net_device *dev)
...
@@ -1908,7 +1883,7 @@ speedo_close(struct net_device *dev)
/* Shut off the media monitoring timer. */
/* Shut off the media monitoring timer. */
del_timer_sync
(
&
sp
->
timer
);
del_timer_sync
(
&
sp
->
timer
);
speedo_intrmask
(
dev
,
0
);
outw
(
SCBMaskAll
,
ioaddr
+
SCBCmd
);
/* Shutting down the chip nicely fails to disable flow control. So.. */
/* Shutting down the chip nicely fails to disable flow control. So.. */
outl
(
PortPartialReset
,
ioaddr
+
SCBPort
);
outl
(
PortPartialReset
,
ioaddr
+
SCBPort
);
...
...
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