diff options
Diffstat (limited to 'drivers/acpi/osl.c')
-rw-r--r-- | drivers/acpi/osl.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 6f49f6437289..c2c585366fa6 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -233,8 +233,6 @@ void acpi_os_printf(const char *fmt, ...) | |||
233 | va_end(args); | 233 | va_end(args); |
234 | } | 234 | } |
235 | 235 | ||
236 | EXPORT_SYMBOL(acpi_os_printf); | ||
237 | |||
238 | void acpi_os_vprintf(const char *fmt, va_list args) | 236 | void acpi_os_vprintf(const char *fmt, va_list args) |
239 | { | 237 | { |
240 | static char buffer[512]; | 238 | static char buffer[512]; |
@@ -413,8 +411,6 @@ void acpi_os_sleep(acpi_integer ms) | |||
413 | schedule_timeout_interruptible(msecs_to_jiffies(ms)); | 411 | schedule_timeout_interruptible(msecs_to_jiffies(ms)); |
414 | } | 412 | } |
415 | 413 | ||
416 | EXPORT_SYMBOL(acpi_os_sleep); | ||
417 | |||
418 | void acpi_os_stall(u32 us) | 414 | void acpi_os_stall(u32 us) |
419 | { | 415 | { |
420 | while (us) { | 416 | while (us) { |
@@ -428,8 +424,6 @@ void acpi_os_stall(u32 us) | |||
428 | } | 424 | } |
429 | } | 425 | } |
430 | 426 | ||
431 | EXPORT_SYMBOL(acpi_os_stall); | ||
432 | |||
433 | /* | 427 | /* |
434 | * Support ACPI 3.0 AML Timer operand | 428 | * Support ACPI 3.0 AML Timer operand |
435 | * Returns 64-bit free-running, monotonically increasing timer | 429 | * Returns 64-bit free-running, monotonically increasing timer |
@@ -579,8 +573,6 @@ acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, | |||
579 | return (result ? AE_ERROR : AE_OK); | 573 | return (result ? AE_ERROR : AE_OK); |
580 | } | 574 | } |
581 | 575 | ||
582 | EXPORT_SYMBOL(acpi_os_read_pci_configuration); | ||
583 | |||
584 | acpi_status | 576 | acpi_status |
585 | acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, | 577 | acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, |
586 | acpi_integer value, u32 width) | 578 | acpi_integer value, u32 width) |
@@ -796,8 +788,6 @@ acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle) | |||
796 | return AE_OK; | 788 | return AE_OK; |
797 | } | 789 | } |
798 | 790 | ||
799 | EXPORT_SYMBOL(acpi_os_create_semaphore); | ||
800 | |||
801 | /* | 791 | /* |
802 | * TODO: A better way to delete semaphores? Linux doesn't have a | 792 | * TODO: A better way to delete semaphores? Linux doesn't have a |
803 | * 'delete_semaphore()' function -- may result in an invalid | 793 | * 'delete_semaphore()' function -- may result in an invalid |
@@ -821,8 +811,6 @@ acpi_status acpi_os_delete_semaphore(acpi_handle handle) | |||
821 | return AE_OK; | 811 | return AE_OK; |
822 | } | 812 | } |
823 | 813 | ||
824 | EXPORT_SYMBOL(acpi_os_delete_semaphore); | ||
825 | |||
826 | /* | 814 | /* |
827 | * TODO: The kernel doesn't have a 'down_timeout' function -- had to | 815 | * TODO: The kernel doesn't have a 'down_timeout' function -- had to |
828 | * improvise. The process is to sleep for one scheduler quantum | 816 | * improvise. The process is to sleep for one scheduler quantum |
@@ -915,8 +903,6 @@ acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout) | |||
915 | return status; | 903 | return status; |
916 | } | 904 | } |
917 | 905 | ||
918 | EXPORT_SYMBOL(acpi_os_wait_semaphore); | ||
919 | |||
920 | /* | 906 | /* |
921 | * TODO: Support for units > 1? | 907 | * TODO: Support for units > 1? |
922 | */ | 908 | */ |
@@ -939,8 +925,6 @@ acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units) | |||
939 | return AE_OK; | 925 | return AE_OK; |
940 | } | 926 | } |
941 | 927 | ||
942 | EXPORT_SYMBOL(acpi_os_signal_semaphore); | ||
943 | |||
944 | #ifdef ACPI_FUTURE_USAGE | 928 | #ifdef ACPI_FUTURE_USAGE |
945 | u32 acpi_os_get_line(char *buffer) | 929 | u32 acpi_os_get_line(char *buffer) |
946 | { | 930 | { |
@@ -984,8 +968,6 @@ acpi_status acpi_os_signal(u32 function, void *info) | |||
984 | return AE_OK; | 968 | return AE_OK; |
985 | } | 969 | } |
986 | 970 | ||
987 | EXPORT_SYMBOL(acpi_os_signal); | ||
988 | |||
989 | static int __init acpi_os_name_setup(char *str) | 971 | static int __init acpi_os_name_setup(char *str) |
990 | { | 972 | { |
991 | char *p = acpi_os_name; | 973 | char *p = acpi_os_name; |