diff options
author | Bob Moore <robert.moore@intel.com> | 2013-10-28 21:29:57 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-31 09:35:33 -0400 |
commit | bb1cab3d52375b5007645ca55d2b55167e5f757b (patch) | |
tree | fa325a582fcda8db5a0455e98890b4b1e317f313 /drivers/acpi/acpica | |
parent | 839e928f5bbb695c31ddc23cf3fae3cf1c9e9f20 (diff) |
ACPICA: Clarify ACPI_FREE_BUFFER usage.
Add a comment to clarify reason for using ACPI_FREE_BUFFER directly
instead of ACPI_FREE.
In addition to that, change one instance in which ACPI_FREE_BUFFER()
should be used instead of ACPI_FREE().
[rjw: Subject and changelog]
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/acpi/acpica')
-rw-r--r-- | drivers/acpi/acpica/nsxfeval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/nsxfeval.c b/drivers/acpi/acpica/nsxfeval.c index a6e3bca48567..ce2a84575a36 100644 --- a/drivers/acpi/acpica/nsxfeval.c +++ b/drivers/acpi/acpica/nsxfeval.c | |||
@@ -139,7 +139,7 @@ acpi_evaluate_object_typed(acpi_handle handle, | |||
139 | 139 | ||
140 | /* Caller used ACPI_ALLOCATE_BUFFER, free the return buffer */ | 140 | /* Caller used ACPI_ALLOCATE_BUFFER, free the return buffer */ |
141 | 141 | ||
142 | ACPI_FREE(return_buffer->pointer); | 142 | ACPI_FREE_BUFFER(*return_buffer); |
143 | return_buffer->pointer = NULL; | 143 | return_buffer->pointer = NULL; |
144 | } | 144 | } |
145 | 145 | ||