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
3aba1ea5
Commit
3aba1ea5
authored
Jan 07, 2003
by
Greg Kroah-Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PCI: properly unregister a PCI device if it is removed.
This is only used by pci hotplug and cardbus systems.
parent
bf01b5b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
drivers/pci/hotplug.c
drivers/pci/hotplug.c
+1
-1
No files found.
drivers/pci/hotplug.c
View file @
3aba1ea5
...
@@ -105,7 +105,7 @@ pci_free_resources(struct pci_dev *dev)
...
@@ -105,7 +105,7 @@ pci_free_resources(struct pci_dev *dev)
void
void
pci_remove_device
(
struct
pci_dev
*
dev
)
pci_remove_device
(
struct
pci_dev
*
dev
)
{
{
put_device
(
&
dev
->
dev
);
device_unregister
(
&
dev
->
dev
);
list_del
(
&
dev
->
bus_list
);
list_del
(
&
dev
->
bus_list
);
list_del
(
&
dev
->
global_list
);
list_del
(
&
dev
->
global_list
);
pci_free_resources
(
dev
);
pci_free_resources
(
dev
);
...
...
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