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
2a7b7310
Commit
2a7b7310
authored
May 06, 2002
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://ldm@bkbits.net/linux-2.5-pci
into segfault.osdl.org:/home/mochel/src/kernel/devel/linux-2.5-pci
parents
9f2fec0f
011e9373
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 @
2a7b7310
...
...
@@ -130,6 +130,7 @@ DRIVERS-m :=
DRIVERS-
:=
DRIVERS-$(CONFIG_ACPI)
+=
drivers/acpi/acpi.o
DRIVERS-$(CONFIG_PCI)
+=
drivers/pci/driver.o
DRIVERS-$(CONFIG_PARPORT)
+=
drivers/parport/driver.o
DRIVERS-y
+=
drivers/base/base.o
\
drivers/char/char.o
\
...
...
@@ -157,7 +158,6 @@ DRIVERS-y += drivers/cdrom/driver.o
endif
DRIVERS-$(CONFIG_SOUND)
+=
sound/sound.o
DRIVERS-$(CONFIG_PCI)
+=
drivers/pci/driver.o
DRIVERS-$(CONFIG_MTD)
+=
drivers/mtd/mtdlink.o
DRIVERS-$(CONFIG_PCMCIA)
+=
drivers/pcmcia/pcmcia.o
DRIVERS-$(CONFIG_NET_PCMCIA)
+=
drivers/net/pcmcia/pcmcia_net.o
...
...
arch/i386/pci/Makefile
View file @
2a7b7310
...
...
@@ -16,9 +16,9 @@ obj-y += fixup.o
ifdef
CONFIG_ACPI_PCI
obj-y
+=
acpi.o
else
obj-y
+=
legacy.o
endif
obj-y
+=
legacy.o
endif
# CONFIG_MULTIQUAD
obj-y
+=
irq.o common.o
...
...
arch/i386/pci/acpi.c
View file @
2a7b7310
...
...
@@ -67,4 +67,4 @@ static int __init pci_acpi_init(void)
return
0
;
}
subsys
_initcall
(
pci_acpi_init
);
arch
_initcall
(
pci_acpi_init
);
arch/i386/pci/direct.c
View file @
2a7b7310
...
...
@@ -363,4 +363,4 @@ static int __init pci_direct_init(void)
return
0
;
}
subsys
_initcall
(
pci_direct_init
);
arch
_initcall
(
pci_direct_init
);
arch/i386/pci/pcbios.c
View file @
2a7b7310
...
...
@@ -556,4 +556,4 @@ static int __init pci_pcbios_init(void)
return
0
;
}
subsys
_initcall
(
pci_pcbios_init
);
arch
_initcall
(
pci_pcbios_init
);
drivers/pci/pci.c
View file @
2a7b7310
...
...
@@ -580,7 +580,7 @@ static int __devinit pci_setup(char *str)
return
1
;
}
subsys
_initcall
(
pci_init
);
device
_initcall
(
pci_init
);
__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