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
011e9373
Commit
011e9373
authored
May 06, 2002
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PCI Update: Fix oops on boot w/ ACPI enabled
parent
bbb283cc
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
7 additions
and
7 deletions
+7
-7
Makefile
Makefile
+1
-1
arch/i386/pci/Makefile
arch/i386/pci/Makefile
+2
-2
arch/i386/pci/acpi.c
arch/i386/pci/acpi.c
+1
-1
arch/i386/pci/direct.c
arch/i386/pci/direct.c
+1
-1
arch/i386/pci/pcbios.c
arch/i386/pci/pcbios.c
+1
-1
drivers/pci/pci.c
drivers/pci/pci.c
+1
-1
No files found.
Makefile
View file @
011e9373
...
@@ -130,6 +130,7 @@ DRIVERS-m :=
...
@@ -130,6 +130,7 @@ DRIVERS-m :=
DRIVERS-
:=
DRIVERS-
:=
DRIVERS-$(CONFIG_ACPI)
+=
drivers/acpi/acpi.o
DRIVERS-$(CONFIG_ACPI)
+=
drivers/acpi/acpi.o
DRIVERS-$(CONFIG_PCI)
+=
drivers/pci/driver.o
DRIVERS-$(CONFIG_PARPORT)
+=
drivers/parport/driver.o
DRIVERS-$(CONFIG_PARPORT)
+=
drivers/parport/driver.o
DRIVERS-y
+=
drivers/base/base.o
\
DRIVERS-y
+=
drivers/base/base.o
\
drivers/char/char.o
\
drivers/char/char.o
\
...
@@ -157,7 +158,6 @@ DRIVERS-y += drivers/cdrom/driver.o
...
@@ -157,7 +158,6 @@ DRIVERS-y += drivers/cdrom/driver.o
endif
endif
DRIVERS-$(CONFIG_SOUND)
+=
sound/sound.o
DRIVERS-$(CONFIG_SOUND)
+=
sound/sound.o
DRIVERS-$(CONFIG_PCI)
+=
drivers/pci/driver.o
DRIVERS-$(CONFIG_MTD)
+=
drivers/mtd/mtdlink.o
DRIVERS-$(CONFIG_MTD)
+=
drivers/mtd/mtdlink.o
DRIVERS-$(CONFIG_PCMCIA)
+=
drivers/pcmcia/pcmcia.o
DRIVERS-$(CONFIG_PCMCIA)
+=
drivers/pcmcia/pcmcia.o
DRIVERS-$(CONFIG_NET_PCMCIA)
+=
drivers/net/pcmcia/pcmcia_net.o
DRIVERS-$(CONFIG_NET_PCMCIA)
+=
drivers/net/pcmcia/pcmcia_net.o
...
...
arch/i386/pci/Makefile
View file @
011e9373
...
@@ -16,9 +16,9 @@ obj-y += fixup.o
...
@@ -16,9 +16,9 @@ obj-y += fixup.o
ifdef
CONFIG_ACPI_PCI
ifdef
CONFIG_ACPI_PCI
obj-y
+=
acpi.o
obj-y
+=
acpi.o
else
obj-y
+=
legacy.o
endif
endif
obj-y
+=
legacy.o
endif
# CONFIG_MULTIQUAD
endif
# CONFIG_MULTIQUAD
obj-y
+=
irq.o common.o
obj-y
+=
irq.o common.o
...
...
arch/i386/pci/acpi.c
View file @
011e9373
...
@@ -67,4 +67,4 @@ static int __init pci_acpi_init(void)
...
@@ -67,4 +67,4 @@ static int __init pci_acpi_init(void)
return
0
;
return
0
;
}
}
subsys
_initcall
(
pci_acpi_init
);
arch
_initcall
(
pci_acpi_init
);
arch/i386/pci/direct.c
View file @
011e9373
...
@@ -363,4 +363,4 @@ static int __init pci_direct_init(void)
...
@@ -363,4 +363,4 @@ static int __init pci_direct_init(void)
return
0
;
return
0
;
}
}
subsys
_initcall
(
pci_direct_init
);
arch
_initcall
(
pci_direct_init
);
arch/i386/pci/pcbios.c
View file @
011e9373
...
@@ -556,4 +556,4 @@ static int __init pci_pcbios_init(void)
...
@@ -556,4 +556,4 @@ static int __init pci_pcbios_init(void)
return
0
;
return
0
;
}
}
subsys
_initcall
(
pci_pcbios_init
);
arch
_initcall
(
pci_pcbios_init
);
drivers/pci/pci.c
View file @
011e9373
...
@@ -578,7 +578,7 @@ static int __devinit pci_setup(char *str)
...
@@ -578,7 +578,7 @@ static int __devinit pci_setup(char *str)
return
1
;
return
1
;
}
}
subsys
_initcall
(
pci_init
);
device
_initcall
(
pci_init
);
__setup
(
"pci="
,
pci_setup
);
__setup
(
"pci="
,
pci_setup
);
...
...
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