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
f5f0b83f
Commit
f5f0b83f
authored
Jul 17, 2003
by
Alan Cox
Committed by
Linus Torvalds
Jul 17, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] fix visws pci (visws specific code)
(Andrey Panin)
parent
fe276d38
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
arch/i386/pci/visws.c
arch/i386/pci/visws.c
+4
-3
No files found.
arch/i386/pci/visws.c
View file @
f5f0b83f
...
...
@@ -17,7 +17,7 @@
int
broken_hp_bios_irq9
;
extern
struct
pci_ops
pci_direct_conf1
;
extern
struct
pci_
raw_
ops
pci_direct_conf1
;
static
int
pci_visws_enable_irq
(
struct
pci_dev
*
dev
)
{
return
0
;
}
...
...
@@ -101,8 +101,9 @@ static int __init pcibios_init(void)
printk
(
KERN_INFO
"PCI: Lithium bridge A bus: %u, "
"bridge B (PIIX4) bus: %u
\n
"
,
pci_bus1
,
pci_bus0
);
pci_scan_bus
(
pci_bus0
,
&
pci_direct_conf1
,
NULL
);
pci_scan_bus
(
pci_bus1
,
&
pci_direct_conf1
,
NULL
);
raw_pci_ops
=
&
pci_direct_conf1
;
pci_scan_bus
(
pci_bus0
,
&
pci_root_ops
,
NULL
);
pci_scan_bus
(
pci_bus1
,
&
pci_root_ops
,
NULL
);
pci_fixup_irqs
(
visws_swizzle
,
visws_map_irq
);
pcibios_resource_survey
();
return
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