Commit 67df9af0 authored by Andy Grover's avatar Andy Grover

ACPI: Make button functions static (Pavel Machek)

parent 40605d07
......@@ -69,8 +69,8 @@ MODULE_DESCRIPTION(ACPI_BUTTON_DRIVER_NAME);
MODULE_LICENSE("GPL");
int acpi_button_add (struct acpi_device *device);
int acpi_button_remove (struct acpi_device *device, int type);
static int acpi_button_add (struct acpi_device *device);
static int acpi_button_remove (struct acpi_device *device, int type);
static int acpi_button_info_open_fs(struct inode *inode, struct file *file);
static int acpi_button_state_open_fs(struct inode *inode, struct file *file);
......@@ -285,7 +285,7 @@ acpi_button_notify_fixed (
}
int
static int
acpi_button_add (
struct acpi_device *device)
{
......@@ -435,7 +435,7 @@ acpi_button_add (
}
int
static int
acpi_button_remove (struct acpi_device *device, int type)
{
acpi_status status = 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment