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
7501ea7e
Commit
7501ea7e
authored
Oct 03, 2002
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PCI: fixed remaining usages of pcibios_present() that I missed previously.
parent
36be8435
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
drivers/char/rocket.c
drivers/char/rocket.c
+1
-1
drivers/sbus/sbus.c
drivers/sbus/sbus.c
+1
-1
drivers/scsi/inia100.c
drivers/scsi/inia100.c
+1
-1
No files found.
drivers/char/rocket.c
View file @
7501ea7e
...
...
@@ -1993,7 +1993,7 @@ int __init rp_init(void)
isa_boards_found
++
;
}
#ifdef CONFIG_PCI
if
(
pci
bios
_present
())
{
if
(
pci_present
())
{
if
(
isa_boards_found
<
NUM_BOARDS
)
pci_boards_found
=
init_PCI
(
isa_boards_found
);
}
else
{
...
...
drivers/sbus/sbus.c
View file @
7501ea7e
...
...
@@ -312,7 +312,7 @@ static int __init sbus_init(void)
nd
=
prom_searchsiblings
(
topnd
,
"sbus"
);
if
(
nd
==
0
)
{
#ifdef CONFIG_PCI
if
(
!
pci
bios_present
())
{
if
(
!
pci
_present
())
{
prom_printf
(
"Neither SBUS nor PCI found.
\n
"
);
prom_halt
();
}
else
{
...
...
drivers/scsi/inia100.c
View file @
7501ea7e
...
...
@@ -208,7 +208,7 @@ int orc_ReturnNumberOfAdapters(void)
/*
* PCI-bus probe.
*/
if
(
pci
bios
_present
())
{
if
(
pci_present
())
{
/*
* Note: I removed the struct pci_device_list stuff since this
* driver only cares about one device ID. If that changes in
...
...
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