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
8cb9cb29
Commit
8cb9cb29
authored
May 29, 2002
by
Anders Gustafsson
Committed by
Jeff Garzik
May 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renames struct bus_type to struct de4x5_bus_type in de4x5 net driver,
to avoid collision with the struct bus_type in device.h
parent
4d7466b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
drivers/net/tulip/de4x5.c
drivers/net/tulip/de4x5.c
+15
-15
No files found.
drivers/net/tulip/de4x5.c
View file @
8cb9cb29
...
...
@@ -866,7 +866,7 @@ struct de4x5_private {
** offsets in the PCI and EISA boards. Also note that the ethernet address
** PROM is accessed differently.
*/
static
struct
bus_type
{
static
struct
de4x5_
bus_type
{
int
bus
;
int
bus_num
;
int
device
;
...
...
@@ -967,10 +967,10 @@ static void reset_init_sia(struct net_device *dev, s32 sicr, s32 strr, s32 si
static
int
test_ans
(
struct
net_device
*
dev
,
s32
irqs
,
s32
irq_mask
,
s32
msec
);
static
int
test_tp
(
struct
net_device
*
dev
,
s32
msec
);
static
int
EISA_signature
(
char
*
name
,
s32
eisa_id
);
static
int
PCI_signature
(
char
*
name
,
struct
bus_type
*
lp
);
static
int
PCI_signature
(
char
*
name
,
struct
de4x5_
bus_type
*
lp
);
static
void
DevicePresent
(
u_long
iobase
);
static
void
enet_addr_rst
(
u_long
aprom_addr
);
static
int
de4x5_bad_srom
(
struct
bus_type
*
lp
);
static
int
de4x5_bad_srom
(
struct
de4x5_
bus_type
*
lp
);
static
short
srom_rd
(
u_long
address
,
u_char
offset
);
static
void
srom_latch
(
u_int
command
,
u_long
address
);
static
void
srom_command
(
u_int
command
,
u_long
address
);
...
...
@@ -998,7 +998,7 @@ static void SetMulticastFilter(struct net_device *dev);
static
int
get_hw_addr
(
struct
net_device
*
dev
);
static
void
srom_repair
(
struct
net_device
*
dev
,
int
card
);
static
int
test_bad_enet
(
struct
net_device
*
dev
,
int
status
);
static
int
an_exception
(
struct
bus_type
*
lp
);
static
int
an_exception
(
struct
de4x5_
bus_type
*
lp
);
#if !defined(__sparc_v9__) && !defined(__powerpc__) && !defined(__alpha__)
static
void
eisa_probe
(
struct
net_device
*
dev
,
u_long
iobase
);
#endif
...
...
@@ -1143,7 +1143,7 @@ de4x5_probe(struct net_device *dev)
static
int
__init
de4x5_hw_init
(
struct
net_device
*
dev
,
u_long
iobase
,
struct
pci_dev
*
pdev
)
{
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
int
i
,
status
=
0
;
char
*
tmp
;
...
...
@@ -2105,7 +2105,7 @@ eisa_probe(struct net_device *dev, u_long ioaddr)
u_short
vendor
;
u32
cfid
;
u_long
iobase
;
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
char
name
[
DE4X5_STRLEN
];
if
(
lastEISA
==
MAX_EISA_SLOTS
)
return
;
/* No more EISA devices to search */
...
...
@@ -2186,7 +2186,7 @@ pci_probe(struct net_device *dev, u_long ioaddr)
u_short
vendor
,
index
,
status
;
u_int
irq
=
0
,
device
,
class
=
DE4X5_CLASS_CODE
;
u_long
iobase
=
0
;
/* Clear upper 32 bits in Alphas */
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
if
(
lastPCI
==
NO_MORE_PCI
)
return
;
...
...
@@ -2299,7 +2299,7 @@ srom_search(struct pci_dev *dev)
u_int
irq
=
0
,
device
;
u_long
iobase
=
0
;
/* Clear upper 32 bits in Alphas */
int
i
,
j
;
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
struct
list_head
*
walk
=
&
dev
->
bus_list
;
for
(
walk
=
walk
->
next
;
walk
!=
&
dev
->
bus_list
;
walk
=
walk
->
next
)
{
...
...
@@ -3992,7 +3992,7 @@ EISA_signature(char *name, s32 eisa_id)
** Look for a particular board name in the PCI configuration space
*/
static
int
PCI_signature
(
char
*
name
,
struct
bus_type
*
lp
)
PCI_signature
(
char
*
name
,
struct
de4x5_
bus_type
*
lp
)
{
static
c_char
*
de4x5_signatures
[]
=
DE4X5_SIGNATURE
;
int
i
,
status
=
0
,
siglen
=
sizeof
(
de4x5_signatures
)
/
sizeof
(
c_char
*
);
...
...
@@ -4041,7 +4041,7 @@ static void
DevicePresent
(
u_long
aprom_addr
)
{
int
i
,
j
=
0
;
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
if
(
lp
->
chipset
==
DC21040
)
{
if
(
lp
->
bus
==
EISA
)
{
...
...
@@ -4122,7 +4122,7 @@ get_hw_addr(struct net_device *dev)
u_long
iobase
=
dev
->
base_addr
;
int
broken
,
i
,
k
,
tmp
,
status
=
0
;
u_short
j
,
chksum
;
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
broken
=
de4x5_bad_srom
(
lp
);
...
...
@@ -4203,7 +4203,7 @@ get_hw_addr(struct net_device *dev)
** didn't seem to work here...?
*/
static
int
de4x5_bad_srom
(
struct
bus_type
*
lp
)
de4x5_bad_srom
(
struct
de4x5_
bus_type
*
lp
)
{
int
i
,
status
=
0
;
...
...
@@ -4237,7 +4237,7 @@ de4x5_strncmp(char *a, char *b, int n)
static
void
srom_repair
(
struct
net_device
*
dev
,
int
card
)
{
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
switch
(
card
)
{
case
SMC
:
...
...
@@ -4258,7 +4258,7 @@ srom_repair(struct net_device *dev, int card)
static
int
test_bad_enet
(
struct
net_device
*
dev
,
int
status
)
{
struct
bus_type
*
lp
=
&
bus
;
struct
de4x5_
bus_type
*
lp
=
&
bus
;
int
i
,
tmp
;
for
(
tmp
=
0
,
i
=
0
;
i
<
ETH_ALEN
;
i
++
)
tmp
+=
(
u_char
)
dev
->
dev_addr
[
i
];
...
...
@@ -4291,7 +4291,7 @@ test_bad_enet(struct net_device *dev, int status)
** List of board exceptions with correctly wired IRQs
*/
static
int
an_exception
(
struct
bus_type
*
lp
)
an_exception
(
struct
de4x5_
bus_type
*
lp
)
{
if
((
*
(
u_short
*
)
lp
->
srom
.
sub_vendor_id
==
0x00c0
)
&&
(
*
(
u_short
*
)
lp
->
srom
.
sub_system_id
==
0x95e0
))
{
...
...
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