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
eb782fba
Commit
eb782fba
authored
Feb 17, 2004
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PCI: fix pci quirk for P4B533-V, fixes bug 1720
Thanks to stephanrave@gmx.de (Stephan Rave) for the patch.
parent
4b86aba4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
drivers/pci/quirks.c
drivers/pci/quirks.c
+6
-3
No files found.
drivers/pci/quirks.c
View file @
eb782fba
...
...
@@ -703,9 +703,12 @@ static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev)
case
0x8088
:
/* P4B533 */
asus_hides_smbus
=
1
;
}
if
((
dev
->
device
==
PCI_DEVICE_ID_INTEL_82845G_HB
)
&&
(
dev
->
subsystem_device
==
0x80b2
))
/* P4PE */
asus_hides_smbus
=
1
;
if
(
dev
->
device
==
PCI_DEVICE_ID_INTEL_82845G_HB
)
switch
(
dev
->
subsystem_device
)
{
case
0x80b2
:
/* P4PE */
case
0x8093
:
/* P4B533-V */
asus_hides_smbus
=
1
;
}
if
((
dev
->
device
==
PCI_DEVICE_ID_INTEL_82850_HB
)
&&
(
dev
->
subsystem_device
==
0x8030
))
/* P4T533 */
asus_hides_smbus
=
1
;
...
...
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