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
1781fe6e
Commit
1781fe6e
authored
May 27, 2002
by
Patrick Mochel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PCI: define pci_bus_type and register it on startup
parent
8f1640cb
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
1 deletion
+14
-1
Makefile
Makefile
+1
-1
drivers/pci/pci-driver.c
drivers/pci/pci-driver.c
+11
-0
drivers/pci/probe.c
drivers/pci/probe.c
+1
-0
include/linux/pci.h
include/linux/pci.h
+1
-0
No files found.
Makefile
View file @
1781fe6e
...
...
@@ -104,8 +104,8 @@ DRIVERS-y :=
DRIVERS-m
:=
DRIVERS-
:=
DRIVERS-$(CONFIG_ACPI)
+=
drivers/acpi/acpi.o
DRIVERS-$(CONFIG_PCI)
+=
drivers/pci/driver.o
DRIVERS-$(CONFIG_ACPI)
+=
drivers/acpi/acpi.o
DRIVERS-$(CONFIG_PARPORT)
+=
drivers/parport/driver.o
DRIVERS-y
+=
drivers/base/base.o
\
drivers/char/char.o
\
...
...
drivers/pci/pci-driver.c
View file @
1781fe6e
...
...
@@ -164,6 +164,17 @@ struct device_driver pci_device_driver = {
resume:
pci_device_resume
,
};
struct
bus_type
pci_bus_type
=
{
name:
"pci"
,
};
static
int
__init
pci_driver_init
(
void
)
{
return
bus_register
(
&
pci_bus_type
);
}
subsys_initcall
(
pci_driver_init
);
EXPORT_SYMBOL
(
pci_match_device
);
EXPORT_SYMBOL
(
pci_register_driver
);
EXPORT_SYMBOL
(
pci_unregister_driver
);
...
...
drivers/pci/probe.c
View file @
1781fe6e
...
...
@@ -513,6 +513,7 @@ unsigned int __devinit pci_do_scan_bus(struct pci_bus *bus)
dev0
.
sysdata
=
bus
->
sysdata
;
dev0
.
dev
.
parent
=
bus
->
dev
;
dev0
.
dev
.
driver
=
&
pci_device_driver
;
dev0
.
dev
.
bus
=
&
pci_bus_type
;
/* Go find them, Rover! */
for
(
devfn
=
0
;
devfn
<
0x100
;
devfn
+=
8
)
{
...
...
include/linux/pci.h
View file @
1781fe6e
...
...
@@ -439,6 +439,7 @@ struct pci_bus {
extern
struct
list_head
pci_root_buses
;
/* list of all known PCI buses */
extern
struct
list_head
pci_devices
;
/* list of all devices */
extern
struct
bus_type
pci_bus_type
;
/*
* Error values that may be returned by PCI functions.
...
...
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