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
nexedi
linux
Commits
7a6b6776
Commit
7a6b6776
authored
Sep 27, 2003
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/jgarzik/misc-2.5
into home.osdl.org:/home/torvalds/v2.5/linux
parents
040c13e6
0c7cadd6
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
138 additions
and
173 deletions
+138
-173
drivers/net/Space.c
drivers/net/Space.c
+0
-4
drivers/net/ne3210.c
drivers/net/ne3210.c
+132
-163
drivers/net/wireless/arlan-main.c
drivers/net/wireless/arlan-main.c
+1
-1
include/linux/hdlcdrv.h
include/linux/hdlcdrv.h
+5
-5
No files found.
drivers/net/Space.c
View file @
7a6b6776
...
...
@@ -67,7 +67,6 @@ extern int elplus_probe(struct net_device *);
extern
int
ac3200_probe
(
struct
net_device
*
);
extern
int
es_probe
(
struct
net_device
*
);
extern
int
lne390_probe
(
struct
net_device
*
);
extern
int
ne3210_probe
(
struct
net_device
*
);
extern
int
e2100_probe
(
struct
net_device
*
);
extern
int
ni5010_probe
(
struct
net_device
*
);
extern
int
ni52_probe
(
struct
net_device
*
);
...
...
@@ -154,9 +153,6 @@ static struct devprobe eisa_probes[] __initdata = {
#endif
#ifdef CONFIG_LNE390
{
lne390_probe
,
0
},
#endif
#ifdef CONFIG_NE3210
{
ne3210_probe
,
0
},
#endif
{
NULL
,
0
},
};
...
...
drivers/net/ne3210.c
View file @
7a6b6776
This diff is collapsed.
Click to expand it.
drivers/net/wireless/arlan-main.c
View file @
7a6b6776
...
...
@@ -721,9 +721,9 @@ static int arlan_hw_tx(struct net_device *dev, char *buf, int length)
else
{
netif_stop_queue
(
dev
);
return
-
1
;
IFDEBUG
(
ARLAN_DEBUG_TX_CHAIN
)
printk
(
KERN_ERR
"TX TAIL & HEAD full, return, tailStart %d headEnd %d
\n
"
,
tailStarts
,
headEnds
);
return
-
1
;
}
priv
->
out_bytes
+=
length
;
priv
->
out_bytes10
+=
length
;
...
...
include/linux/hdlcdrv.h
View file @
7a6b6776
...
...
@@ -359,11 +359,11 @@ static inline int hdlcdrv_ptt(struct hdlcdrv_state *s)
void
hdlcdrv_receiver
(
struct
net_device
*
,
struct
hdlcdrv_state
*
);
void
hdlcdrv_transmitter
(
struct
net_device
*
,
struct
hdlcdrv_state
*
);
void
hdlcdrv_arbitrate
(
struct
net_device
*
,
struct
hdlcdrv_state
*
);
int
hdlcdrv_register_hdlcdrv
(
struct
net_device
*
dev
,
const
struct
hdlcdrv_ops
*
ops
,
unsigned
int
privsize
,
char
*
ifname
,
struct
net_device
*
hdlcdrv_register
(
const
struct
hdlcdrv_ops
*
ops
,
unsigned
int
privsize
,
const
char
*
ifname
,
unsigned
int
baseaddr
,
unsigned
int
irq
,
unsigned
int
dma
);
int
hdlcdrv_unregister_hdlcdrv
(
struct
net_device
*
dev
);
void
hdlcdrv_unregister
(
struct
net_device
*
dev
);
/* -------------------------------------------------------------------- */
...
...
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