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
0b29fac8
Commit
0b29fac8
authored
Jun 03, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] PCI: remove usage of pci_for_each_dev() in drivers/video/sis/sis_main.c
parent
7d0d5418
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
64 deletions
+41
-64
drivers/video/sis/sis_main.c
drivers/video/sis/sis_main.c
+41
-64
No files found.
drivers/video/sis/sis_main.c
View file @
0b29fac8
...
...
@@ -134,15 +134,9 @@ sisfb_query_VGA_config_space(PSIS_HW_DEVICE_INFO psishw_ext,
if
(
!
init
)
{
init
=
TRUE
;
pci_for_each_dev
(
pdev
)
{
DPRINTK
(
"sisfb: Current: 0x%x, target: 0x%x
\n
"
,
pdev
->
device
,
ivideo
.
chip_id
);
if
((
pdev
->
vendor
==
PCI_VENDOR_ID_SI
)
&&
(
pdev
->
device
==
ivideo
.
chip_id
))
{
pdev
=
pci_find_device
(
PCI_VENDOR_ID_SI
,
ivideo
.
chip_id
,
pdev
);
if
(
pdev
)
valid_pdev
=
TRUE
;
break
;
}
}
}
if
(
!
valid_pdev
)
{
...
...
@@ -192,15 +186,9 @@ BOOLEAN sisfb_query_north_bridge_space(PSIS_HW_DEVICE_INFO psishw_ext,
break
;
}
pci_for_each_dev
(
pdev
)
{
DPRINTK
(
"Current: 0x%x, target: 0x%x
\n
"
,
pdev
->
device
,
ivideo
.
chip_id
);
if
((
pdev
->
vendor
==
PCI_VENDOR_ID_SI
)
&&
(
pdev
->
device
==
nbridge_id
))
{
pdev
=
pci_find_device
(
PCI_VENDOR_ID_SI
,
nbridge_id
,
pdev
);
if
(
pdev
)
valid_pdev
=
TRUE
;
break
;
}
}
}
if
(
!
valid_pdev
)
{
...
...
@@ -2117,10 +2105,8 @@ static int sisfb_get_dram_size_300(void)
}
else
{
/* 540, 630, 730 */
pci_for_each_dev
(
pdev
)
{
if
((
pdev
->
vendor
==
PCI_VENDOR_ID_SI
)
&&
(
pdev
->
device
==
nbridge_id
))
{
pdev
=
pci_find_device
(
PCI_VENDOR_ID_SI
,
nbridge_id
,
pdev
);
if
(
pdev
)
{
pci_read_config_byte
(
pdev
,
IND_BRI_DRAM_STATUS
,
&
pci_data
);
pci_data
=
(
pci_data
&
BRI_DRAM_SIZE_MASK
)
>>
4
;
ivideo
.
video_size
=
(
unsigned
int
)(
1
<<
(
pci_data
+
21
));
...
...
@@ -2148,8 +2134,6 @@ static int sisfb_get_dram_size_300(void)
break
;
}
outSISIDXREG
(
SISSR
,
IND_SIS_DRAM_SIZE
,
reg
);
break
;
}
}
if
(
!
pdev_valid
)
return
-
1
;
...
...
@@ -2334,12 +2318,10 @@ static int sisfb_get_dram_size_315(void)
#ifdef LINUXBIOS
pci_for_each_dev
(
pdev
)
{
if
(
(
pdev
->
vendor
==
PCI_VENDOR_ID_SI
)
&&
(
(
pdev
->
device
==
PCI_DEVICE_ID_SI_550
)
||
while
((
pdev
=
pci_find_device
(
PCI_VENDOR_ID_SI
,
PCI_ANY_ID
,
pdev
))
!=
NULL
)
{
if
((
pdev
->
device
==
PCI_DEVICE_ID_SI_550
)
||
(
pdev
->
device
==
PCI_DEVICE_ID_SI_650
)
||
(
pdev
->
device
==
PCI_DEVICE_ID_SI_740
)
))
{
(
pdev
->
device
==
PCI_DEVICE_ID_SI_740
))
{
pci_read_config_byte
(
pdev
,
IND_BRI_DRAM_STATUS
,
&
pci_data
);
pci_data
=
(
pci_data
&
BRI_DRAM_SIZE_MASK
)
>>
4
;
...
...
@@ -2408,11 +2390,7 @@ static int sisfb_get_dram_size_315(void)
"now reading from PCI config
\n
"
);
pdev_valid
=
0
;
pci_for_each_dev
(
pdev
)
{
if
(
(
pdev
->
vendor
==
PCI_VENDOR_ID_SI
)
&&
(
pdev
->
device
==
PCI_DEVICE_ID_SI_550
)
)
{
while
((
pdev
=
pci_find_device
(
PCI_VENDOR_ID_SI
,
PCI_DEVICE_ID_SI_550
,
pdev
))
!=
NULL
)
{
pci_read_config_byte
(
pdev
,
IND_BRI_DRAM_STATUS
,
&
pci_data
);
pci_data
=
(
pci_data
&
BRI_DRAM_SIZE_MASK
)
>>
4
;
...
...
@@ -2438,7 +2416,6 @@ static int sisfb_get_dram_size_315(void)
}
outSISIDXREG
(
SISSR
,
IND_SIS_DRAM_SIZE
,
reg
);
}
}
if
(
!
pdev_valid
)
{
printk
(
KERN_INFO
"sisfb: Total confusion - No SiS PCI VGA device found?!
\n
"
);
return
-
1
;
...
...
@@ -3785,7 +3762,7 @@ int __init sisfb_init(void)
memset
(
&
sis_disp
,
0
,
sizeof
(
sis_disp
));
#endif
pci_for_each_dev
(
pdev
)
{
while
((
pdev
=
pci_find_device
(
PCI_ANY_ID
,
PCI_ANY_ID
,
pdev
))
!=
NULL
)
{
for
(
b
=
sisdev_list
;
b
->
vendor
;
b
++
)
{
if
((
b
->
vendor
==
pdev
->
vendor
)
&&
(
b
->
device
==
pdev
->
device
))
{
...
...
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