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
e6524140
Commit
e6524140
authored
Aug 04, 2004
by
Deepak Saxena
Browse files
Options
Browse Files
Download
Plain Diff
Merge plexity.net:/home/dsaxena/src/linux-2.5-bk
into plexity.net:/home/dsaxena/src/linux-2.6-for-rmk
parents
a685d7b5
ef5eb14d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
8 deletions
+14
-8
arch/arm/kernel/bios32.c
arch/arm/kernel/bios32.c
+14
-8
No files found.
arch/arm/kernel/bios32.c
View file @
e6524140
...
...
@@ -17,6 +17,7 @@
#include <asm/mach/pci.h>
static
int
debug_pci
;
static
int
use_firmware
;
/*
* We can't use pci_find_device() here since we are
...
...
@@ -571,15 +572,17 @@ void __init pci_common_init(struct hw_pci *hw)
list_for_each_entry
(
sys
,
&
hw
->
buses
,
node
)
{
struct
pci_bus
*
bus
=
sys
->
bus
;
/*
* Size the bridge windows.
*/
pci_bus_size_bridges
(
bus
);
if
(
!
use_firmware
)
{
/*
* Size the bridge windows.
*/
pci_bus_size_bridges
(
bus
);
/*
* Assign resources.
*/
pci_bus_assign_resources
(
bus
);
/*
* Assign resources.
*/
pci_bus_assign_resources
(
bus
);
}
/*
* Tell drivers about devices found.
...
...
@@ -593,6 +596,9 @@ char * __init pcibios_setup(char *str)
if
(
!
strcmp
(
str
,
"debug"
))
{
debug_pci
=
1
;
return
NULL
;
}
else
if
(
!
strcmp
,
"firmware"
)
{
use_firmware
=
1
;
return
NULL
;
}
return
str
;
}
...
...
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