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
917b32b2
Commit
917b32b2
authored
Jun 09, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PCI: remove pci_present() from drivers/net/saa9730.c
parent
f7ed0c8b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
20 deletions
+19
-20
drivers/net/saa9730.c
drivers/net/saa9730.c
+19
-20
No files found.
drivers/net/saa9730.c
View file @
917b32b2
...
...
@@ -1050,9 +1050,8 @@ static int lan_saa9730_init(struct net_device *dev, int ioaddr, int irq)
static
int
__init
saa9730_probe
(
void
)
{
struct
net_device
*
dev
=
NULL
;
if
(
pci_present
())
{
struct
pci_dev
*
pdev
=
NULL
;
if
(
lan_saa9730_debug
>
1
)
printk
(
"saa9730.c: PCI bios is present, checking for devices...
\n
"
);
...
...
@@ -1071,11 +1070,11 @@ static int __init saa9730_probe(void)
printk
(
"Found SAA9730 (PCI) at %#x, irq %d.
\n
"
,
pci_ioaddr
,
pci_irq_line
);
if
(
!
lan_saa9730_init
(
dev
,
pci_ioaddr
,
pci_irq_line
))
return
0
;
(
dev
,
pci_ioaddr
,
pci_irq_line
))
return
0
;
else
printk
(
"Lan init failed.
\n
"
);
}
}
return
-
ENODEV
;
}
...
...
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