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
182d090b
Commit
182d090b
authored
Oct 04, 2002
by
Linus Torvalds
Committed by
Linus Torvalds
Oct 04, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Undo due to weird behaviour on various boxes
Cset exclude: ink@jurassic.park.msu.ru|ChangeSet|20021003201553|58706
parent
d08a0a0e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
drivers/pci/probe.c
drivers/pci/probe.c
+2
-4
No files found.
drivers/pci/probe.c
View file @
182d090b
...
...
@@ -46,7 +46,7 @@ static u32 pci_size(u32 base, unsigned long mask)
static
void
pci_read_bases
(
struct
pci_dev
*
dev
,
unsigned
int
howmany
,
int
rom
)
{
unsigned
int
pos
,
reg
,
next
;
u32
l
,
l0
,
sz
;
u32
l
,
sz
;
struct
resource
*
res
;
for
(
pos
=
0
;
pos
<
howmany
;
pos
=
next
)
{
...
...
@@ -55,12 +55,10 @@ static void pci_read_bases(struct pci_dev *dev, unsigned int howmany, int rom)
res
->
name
=
dev
->
name
;
reg
=
PCI_BASE_ADDRESS_0
+
(
pos
<<
2
);
pci_read_config_dword
(
dev
,
reg
,
&
l
);
pci_write_config_dword
(
dev
,
reg
,
0
);
pci_read_config_dword
(
dev
,
reg
,
&
l0
);
pci_write_config_dword
(
dev
,
reg
,
~
0
);
pci_read_config_dword
(
dev
,
reg
,
&
sz
);
pci_write_config_dword
(
dev
,
reg
,
l
);
if
(
!
sz
||
sz
==
0xffffffff
||
sz
==
l0
)
if
(
!
sz
||
sz
==
0xffffffff
)
continue
;
if
(
l
==
0xffffffff
)
l
=
0
;
...
...
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