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
497e5ff0
Commit
497e5ff0
authored
Jun 06, 2012
by
Ralf Baechle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MIPS: Malta: Move PIIX4 PCI fixup to where it belongs.
Signed-off-by:
Ralf Baechle
<
ralf@linux-mips.org
>
parent
f7257d38
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
arch/mips/pci/fixup-malta.c
arch/mips/pci/fixup-malta.c
+14
-0
No files found.
arch/mips/pci/fixup-malta.c
View file @
497e5ff0
...
@@ -101,3 +101,17 @@ static void __devinit malta_piix_func1_fixup(struct pci_dev *pdev)
...
@@ -101,3 +101,17 @@ static void __devinit malta_piix_func1_fixup(struct pci_dev *pdev)
DECLARE_PCI_FIXUP_HEADER
(
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_82371AB
,
DECLARE_PCI_FIXUP_HEADER
(
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_82371AB
,
malta_piix_func1_fixup
);
malta_piix_func1_fixup
);
/* Enable PCI 2.1 compatibility in PIIX4 */
static
void
__devinit
quirk_dlcsetup
(
struct
pci_dev
*
dev
)
{
u8
odlc
,
ndlc
;
(
void
)
pci_read_config_byte
(
dev
,
0x82
,
&
odlc
);
/* Enable passive releases and delayed transaction */
ndlc
=
odlc
|
7
;
(
void
)
pci_write_config_byte
(
dev
,
0x82
,
ndlc
);
}
DECLARE_PCI_FIXUP_FINAL
(
PCI_VENDOR_ID_INTEL
,
PCI_DEVICE_ID_INTEL_82371AB_0
,
quirk_dlcsetup
);
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