Skip to content

Commit

Permalink
[ACPI] add static to function definitions
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Len Brown <len.brown@intel.com>
  • Loading branch information
Adrian Bunk authored and Len Brown committed Sep 3, 2005
1 parent aff8c27 commit 8713cbe
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion drivers/acpi/osl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ static int __init acpi_wake_gpes_always_on_setup(char *str)

__setup("acpi_wake_gpes_always_on", acpi_wake_gpes_always_on_setup);

int __init acpi_hotkey_setup(char *str)
static int __init acpi_hotkey_setup(char *str)
{
acpi_specific_hotkey_enabled = FALSE;
return 1;
Expand Down
3 changes: 2 additions & 1 deletion drivers/acpi/pci_bind.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ struct acpi_pci_data {
struct pci_dev *dev;
};

void acpi_pci_data_handler(acpi_handle handle, u32 function, void *context)
static void acpi_pci_data_handler(acpi_handle handle, u32 function,
void *context)
{
ACPI_FUNCTION_TRACE("acpi_pci_data_handler");

Expand Down
2 changes: 1 addition & 1 deletion drivers/acpi/processor_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ static int acpi_processor_errata_piix4(struct pci_dev *dev)
return_VALUE(0);
}

int acpi_processor_errata(struct acpi_processor *pr)
static int acpi_processor_errata(struct acpi_processor *pr)
{
int result = 0;
struct pci_dev *dev = NULL;
Expand Down
2 changes: 1 addition & 1 deletion drivers/acpi/scan.c
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
return_VALUE(0);
}

int acpi_start_single_object(struct acpi_device *device)
static int acpi_start_single_object(struct acpi_device *device)
{
int result = 0;
struct acpi_driver *driver;
Expand Down

0 comments on commit 8713cbe

Please sign in to comment.