diff options
author | Lin Ming <ming.m.lin@intel.com> | 2008-12-16 04:04:24 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2008-12-31 01:12:08 -0500 |
commit | 46422814f988b32d595dd2ce6d43f4c6d3623d41 (patch) | |
tree | d157ba3742d9247eb5aa391a90a64be065497634 /drivers | |
parent | 60a4ce7f4148155d3f28eea4a213f7ee47cd57b7 (diff) |
ACPI: panasonic-laptop.c: remove ACPI_FUNCTION_TRACE
ACPI_FUNCTION_TRACE is an internal acpica function.
remove ACPI_FUNCTION_TRACE from driver file
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/misc/panasonic-laptop.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/drivers/misc/panasonic-laptop.c b/drivers/misc/panasonic-laptop.c index 4a1bc64485d5..f30db367c82e 100644 --- a/drivers/misc/panasonic-laptop.c +++ b/drivers/misc/panasonic-laptop.c | |||
@@ -241,8 +241,6 @@ static int acpi_pcc_write_sset(struct pcc_acpi *pcc, int func, int val) | |||
241 | }; | 241 | }; |
242 | acpi_status status = AE_OK; | 242 | acpi_status status = AE_OK; |
243 | 243 | ||
244 | ACPI_FUNCTION_TRACE("acpi_pcc_write_sset"); | ||
245 | |||
246 | status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SSET, | 244 | status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SSET, |
247 | ¶ms, NULL); | 245 | ¶ms, NULL); |
248 | 246 | ||
@@ -254,8 +252,6 @@ static inline int acpi_pcc_get_sqty(struct acpi_device *device) | |||
254 | unsigned long long s; | 252 | unsigned long long s; |
255 | acpi_status status; | 253 | acpi_status status; |
256 | 254 | ||
257 | ACPI_FUNCTION_TRACE("acpi_pcc_get_sqty"); | ||
258 | |||
259 | status = acpi_evaluate_integer(device->handle, METHOD_HKEY_SQTY, | 255 | status = acpi_evaluate_integer(device->handle, METHOD_HKEY_SQTY, |
260 | NULL, &s); | 256 | NULL, &s); |
261 | if (ACPI_SUCCESS(status)) | 257 | if (ACPI_SUCCESS(status)) |
@@ -274,8 +270,6 @@ static int acpi_pcc_retrieve_biosdata(struct pcc_acpi *pcc, u32 *sinf) | |||
274 | union acpi_object *hkey = NULL; | 270 | union acpi_object *hkey = NULL; |
275 | int i; | 271 | int i; |
276 | 272 | ||
277 | ACPI_FUNCTION_TRACE("acpi_pcc_retrieve_biosdata"); | ||
278 | |||
279 | status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SINF, 0, | 273 | status = acpi_evaluate_object(pcc->handle, METHOD_HKEY_SINF, 0, |
280 | &buffer); | 274 | &buffer); |
281 | if (ACPI_FAILURE(status)) { | 275 | if (ACPI_FAILURE(status)) { |
@@ -501,8 +495,6 @@ static void acpi_pcc_generate_keyinput(struct pcc_acpi *pcc) | |||
501 | int key_code, hkey_num; | 495 | int key_code, hkey_num; |
502 | unsigned long long result; | 496 | unsigned long long result; |
503 | 497 | ||
504 | ACPI_FUNCTION_TRACE("acpi_pcc_generate_keyinput"); | ||
505 | |||
506 | rc = acpi_evaluate_integer(pcc->handle, METHOD_HKEY_QUERY, | 498 | rc = acpi_evaluate_integer(pcc->handle, METHOD_HKEY_QUERY, |
507 | NULL, &result); | 499 | NULL, &result); |
508 | if (!ACPI_SUCCESS(rc)) { | 500 | if (!ACPI_SUCCESS(rc)) { |
@@ -538,8 +530,6 @@ static void acpi_pcc_hotkey_notify(acpi_handle handle, u32 event, void *data) | |||
538 | { | 530 | { |
539 | struct pcc_acpi *pcc = (struct pcc_acpi *) data; | 531 | struct pcc_acpi *pcc = (struct pcc_acpi *) data; |
540 | 532 | ||
541 | ACPI_FUNCTION_TRACE("acpi_pcc_hotkey_notify"); | ||
542 | |||
543 | switch (event) { | 533 | switch (event) { |
544 | case HKEY_NOTIFY: | 534 | case HKEY_NOTIFY: |
545 | acpi_pcc_generate_keyinput(pcc); | 535 | acpi_pcc_generate_keyinput(pcc); |
@@ -554,8 +544,6 @@ static int acpi_pcc_init_input(struct pcc_acpi *pcc) | |||
554 | { | 544 | { |
555 | int i, rc; | 545 | int i, rc; |
556 | 546 | ||
557 | ACPI_FUNCTION_TRACE("acpi_pcc_init_input"); | ||
558 | |||
559 | pcc->input_dev = input_allocate_device(); | 547 | pcc->input_dev = input_allocate_device(); |
560 | if (!pcc->input_dev) { | 548 | if (!pcc->input_dev) { |
561 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, | 549 | ACPI_DEBUG_PRINT((ACPI_DB_ERROR, |
@@ -597,8 +585,6 @@ static int acpi_pcc_hotkey_resume(struct acpi_device *device) | |||
597 | struct pcc_acpi *pcc = acpi_driver_data(device); | 585 | struct pcc_acpi *pcc = acpi_driver_data(device); |
598 | acpi_status status = AE_OK; | 586 | acpi_status status = AE_OK; |
599 | 587 | ||
600 | ACPI_FUNCTION_TRACE("acpi_pcc_hotkey_resume"); | ||
601 | |||
602 | if (device == NULL || pcc == NULL) | 588 | if (device == NULL || pcc == NULL) |
603 | return -EINVAL; | 589 | return -EINVAL; |
604 | 590 | ||
@@ -616,8 +602,6 @@ static int acpi_pcc_hotkey_add(struct acpi_device *device) | |||
616 | struct pcc_acpi *pcc; | 602 | struct pcc_acpi *pcc; |
617 | int num_sifr, result; | 603 | int num_sifr, result; |
618 | 604 | ||
619 | ACPI_FUNCTION_TRACE("acpi_pcc_hotkey_add"); | ||
620 | |||
621 | if (!device) | 605 | if (!device) |
622 | return -EINVAL; | 606 | return -EINVAL; |
623 | 607 | ||
@@ -714,8 +698,6 @@ static int __init acpi_pcc_init(void) | |||
714 | { | 698 | { |
715 | int result = 0; | 699 | int result = 0; |
716 | 700 | ||
717 | ACPI_FUNCTION_TRACE("acpi_pcc_init"); | ||
718 | |||
719 | if (acpi_disabled) | 701 | if (acpi_disabled) |
720 | return -ENODEV; | 702 | return -ENODEV; |
721 | 703 | ||
@@ -733,8 +715,6 @@ static int acpi_pcc_hotkey_remove(struct acpi_device *device, int type) | |||
733 | { | 715 | { |
734 | struct pcc_acpi *pcc = acpi_driver_data(device); | 716 | struct pcc_acpi *pcc = acpi_driver_data(device); |
735 | 717 | ||
736 | ACPI_FUNCTION_TRACE("acpi_pcc_hotkey_remove"); | ||
737 | |||
738 | if (!device || !pcc) | 718 | if (!device || !pcc) |
739 | return -EINVAL; | 719 | return -EINVAL; |
740 | 720 | ||
@@ -757,8 +737,6 @@ static int acpi_pcc_hotkey_remove(struct acpi_device *device, int type) | |||
757 | 737 | ||
758 | static void __exit acpi_pcc_exit(void) | 738 | static void __exit acpi_pcc_exit(void) |
759 | { | 739 | { |
760 | ACPI_FUNCTION_TRACE("acpi_pcc_exit"); | ||
761 | |||
762 | acpi_bus_unregister_driver(&acpi_pcc_driver); | 740 | acpi_bus_unregister_driver(&acpi_pcc_driver); |
763 | } | 741 | } |
764 | 742 | ||