diff options
author | Len Brown <len.brown@intel.com> | 2007-01-30 02:13:44 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2007-01-30 02:13:44 -0500 |
commit | 7ac2735462349ca35d8807d93d66cf4d9ea7b729 (patch) | |
tree | 84898ffed16413351dd14fee28937ffa12b7bde9 /drivers/acpi/scan.c | |
parent | 37cabc81640ddba28a2aa7f0d1286a1012eae248 (diff) |
ACPI: delete unused acpi_device_get_debug_info()
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/scan.c')
-rw-r--r-- | drivers/acpi/scan.c | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/drivers/acpi/scan.c b/drivers/acpi/scan.c index 0bd788a64eb3..2e0fc8c3b58b 100644 --- a/drivers/acpi/scan.c +++ b/drivers/acpi/scan.c | |||
@@ -888,49 +888,6 @@ static int acpi_device_set_context(struct acpi_device *device, int type) | |||
888 | return result; | 888 | return result; |
889 | } | 889 | } |
890 | 890 | ||
891 | static void acpi_device_get_debug_info(struct acpi_device *device, | ||
892 | acpi_handle handle, int type) | ||
893 | { | ||
894 | #ifdef ACPI_DEBUG_OUTPUT | ||
895 | char *type_string = NULL; | ||
896 | char name[80] = { '?', '\0' }; | ||
897 | struct acpi_buffer buffer = { sizeof(name), name }; | ||
898 | |||
899 | switch (type) { | ||
900 | case ACPI_BUS_TYPE_DEVICE: | ||
901 | type_string = "Device"; | ||
902 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); | ||
903 | break; | ||
904 | case ACPI_BUS_TYPE_POWER: | ||
905 | type_string = "Power Resource"; | ||
906 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); | ||
907 | break; | ||
908 | case ACPI_BUS_TYPE_PROCESSOR: | ||
909 | type_string = "Processor"; | ||
910 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); | ||
911 | break; | ||
912 | case ACPI_BUS_TYPE_SYSTEM: | ||
913 | type_string = "System"; | ||
914 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); | ||
915 | break; | ||
916 | case ACPI_BUS_TYPE_THERMAL: | ||
917 | type_string = "Thermal Zone"; | ||
918 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); | ||
919 | break; | ||
920 | case ACPI_BUS_TYPE_POWER_BUTTON: | ||
921 | type_string = "Power Button"; | ||
922 | sprintf(name, "PWRB"); | ||
923 | break; | ||
924 | case ACPI_BUS_TYPE_SLEEP_BUTTON: | ||
925 | type_string = "Sleep Button"; | ||
926 | sprintf(name, "SLPB"); | ||
927 | break; | ||
928 | } | ||
929 | |||
930 | printk(KERN_DEBUG "Found %s %s [%p]\n", type_string, name, handle); | ||
931 | #endif /* ACPI_DEBUG_OUTPUT */ | ||
932 | } | ||
933 | |||
934 | static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) | 891 | static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) |
935 | { | 892 | { |
936 | int result = 0; | 893 | int result = 0; |
@@ -1076,8 +1033,6 @@ acpi_add_single_object(struct acpi_device **child, | |||
1076 | if ((result = acpi_device_set_context(device, type))) | 1033 | if ((result = acpi_device_set_context(device, type))) |
1077 | goto end; | 1034 | goto end; |
1078 | 1035 | ||
1079 | acpi_device_get_debug_info(device, handle, type); | ||
1080 | |||
1081 | acpi_device_register(device, parent); | 1036 | acpi_device_register(device, parent); |
1082 | 1037 | ||
1083 | /* | 1038 | /* |