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 e53fb516f9d4..7fcacc5ed821 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -219,8 +219,6 @@ void acpi_os_printf(const char *fmt, ...) | |||
219 | va_end(args); | 219 | va_end(args); |
220 | } | 220 | } |
221 | 221 | ||
222 | EXPORT_SYMBOL(acpi_os_printf); | ||
223 | |||
224 | void acpi_os_vprintf(const char *fmt, va_list args) | 222 | void acpi_os_vprintf(const char *fmt, va_list args) |
225 | { | 223 | { |
226 | static char buffer[512]; | 224 | static char buffer[512]; |
@@ -384,8 +382,6 @@ void acpi_os_sleep(acpi_integer ms) | |||
384 | schedule_timeout_interruptible(msecs_to_jiffies(ms)); | 382 | schedule_timeout_interruptible(msecs_to_jiffies(ms)); |
385 | } | 383 | } |
386 | 384 | ||
387 | EXPORT_SYMBOL(acpi_os_sleep); | ||
388 | |||
389 | void acpi_os_stall(u32 us) | 385 | void acpi_os_stall(u32 us) |
390 | { | 386 | { |
391 | while (us) { | 387 | while (us) { |
@@ -399,8 +395,6 @@ void acpi_os_stall(u32 us) | |||
399 | } | 395 | } |
400 | } | 396 | } |
401 | 397 | ||
402 | EXPORT_SYMBOL(acpi_os_stall); | ||
403 | |||
404 | /* | 398 | /* |
405 | * Support ACPI 3.0 AML Timer operand | 399 | * Support ACPI 3.0 AML Timer operand |
406 | * Returns 64-bit free-running, monotonically increasing timer | 400 | * Returns 64-bit free-running, monotonically increasing timer |
@@ -550,8 +544,6 @@ acpi_os_read_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, | |||
550 | return (result ? AE_ERROR : AE_OK); | 544 | return (result ? AE_ERROR : AE_OK); |
551 | } | 545 | } |
552 | 546 | ||
553 | EXPORT_SYMBOL(acpi_os_read_pci_configuration); | ||
554 | |||
555 | acpi_status | 547 | acpi_status |
556 | acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, | 548 | acpi_os_write_pci_configuration(struct acpi_pci_id * pci_id, u32 reg, |
557 | acpi_integer value, u32 width) | 549 | acpi_integer value, u32 width) |
@@ -793,8 +785,6 @@ acpi_os_create_semaphore(u32 max_units, u32 initial_units, acpi_handle * handle) | |||
793 | return AE_OK; | 785 | return AE_OK; |
794 | } | 786 | } |
795 | 787 | ||
796 | EXPORT_SYMBOL(acpi_os_create_semaphore); | ||
797 | |||
798 | /* | 788 | /* |
799 | * TODO: A better way to delete semaphores? Linux doesn't have a | 789 | * TODO: A better way to delete semaphores? Linux doesn't have a |
800 | * 'delete_semaphore()' function -- may result in an invalid | 790 | * 'delete_semaphore()' function -- may result in an invalid |
@@ -818,8 +808,6 @@ acpi_status acpi_os_delete_semaphore(acpi_handle handle) | |||
818 | return AE_OK; | 808 | return AE_OK; |
819 | } | 809 | } |
820 | 810 | ||
821 | EXPORT_SYMBOL(acpi_os_delete_semaphore); | ||
822 | |||
823 | /* | 811 | /* |
824 | * TODO: The kernel doesn't have a 'down_timeout' function -- had to | 812 | * TODO: The kernel doesn't have a 'down_timeout' function -- had to |
825 | * improvise. The process is to sleep for one scheduler quantum | 813 | * improvise. The process is to sleep for one scheduler quantum |
@@ -912,8 +900,6 @@ acpi_status acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 timeout) | |||
912 | return status; | 900 | return status; |
913 | } | 901 | } |
914 | 902 | ||
915 | EXPORT_SYMBOL(acpi_os_wait_semaphore); | ||
916 | |||
917 | /* | 903 | /* |
918 | * TODO: Support for units > 1? | 904 | * TODO: Support for units > 1? |
919 | */ | 905 | */ |
@@ -936,8 +922,6 @@ acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units) | |||
936 | return AE_OK; | 922 | return AE_OK; |
937 | } | 923 | } |
938 | 924 | ||
939 | EXPORT_SYMBOL(acpi_os_signal_semaphore); | ||
940 | |||
941 | #ifdef ACPI_FUTURE_USAGE | 925 | #ifdef ACPI_FUTURE_USAGE |
942 | u32 acpi_os_get_line(char *buffer) | 926 | u32 acpi_os_get_line(char *buffer) |
943 | { | 927 | { |
@@ -981,8 +965,6 @@ acpi_status acpi_os_signal(u32 function, void *info) | |||
981 | return AE_OK; | 965 | return AE_OK; |
982 | } | 966 | } |
983 | 967 | ||
984 | EXPORT_SYMBOL(acpi_os_signal); | ||
985 | |||
986 | static int __init acpi_os_name_setup(char *str) | 968 | static int __init acpi_os_name_setup(char *str) |
987 | { | 969 | { |
988 | char *p = acpi_os_name; | 970 | char *p = acpi_os_name; |