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
2b85e130
Commit
2b85e130
authored
Jun 27, 2006
by
Len Brown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ACPI: static-ize handle_hotplug_event_func()
Signed-off-by:
Len Brown
<
len.brown@intel.com
>
parent
4e8662bb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
drivers/pci/hotplug/acpiphp.h
drivers/pci/hotplug/acpiphp.h
+0
-1
drivers/pci/hotplug/acpiphp_glue.c
drivers/pci/hotplug/acpiphp_glue.c
+2
-1
No files found.
drivers/pci/hotplug/acpiphp.h
View file @
2b85e130
...
...
@@ -203,7 +203,6 @@ extern int acpiphp_glue_init (void);
extern
void
acpiphp_glue_exit
(
void
);
extern
int
acpiphp_get_num_slots
(
void
);
typedef
int
(
*
acpiphp_callback
)(
struct
acpiphp_slot
*
slot
,
void
*
data
);
void
handle_hotplug_event_func
(
acpi_handle
,
u32
,
void
*
);
extern
int
acpiphp_enable_slot
(
struct
acpiphp_slot
*
slot
);
extern
int
acpiphp_disable_slot
(
struct
acpiphp_slot
*
slot
);
...
...
drivers/pci/hotplug/acpiphp_glue.c
View file @
2b85e130
...
...
@@ -59,6 +59,7 @@ static LIST_HEAD(bridge_list);
static
void
handle_hotplug_event_bridge
(
acpi_handle
,
u32
,
void
*
);
static
void
acpiphp_sanitize_bus
(
struct
pci_bus
*
bus
);
static
void
acpiphp_set_hpp_values
(
acpi_handle
handle
,
struct
pci_bus
*
bus
);
static
void
handle_hotplug_event_func
(
acpi_handle
handle
,
u32
type
,
void
*
context
);
/*
...
...
@@ -1497,7 +1498,7 @@ static void handle_hotplug_event_bridge(acpi_handle handle, u32 type, void *cont
* handles ACPI event notification on slots
*
*/
void
handle_hotplug_event_func
(
acpi_handle
handle
,
u32
type
,
void
*
context
)
static
void
handle_hotplug_event_func
(
acpi_handle
handle
,
u32
type
,
void
*
context
)
{
struct
acpiphp_func
*
func
;
char
objname
[
64
];
...
...
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