diff options
Diffstat (limited to 'drivers/acpi/acpica/utobject.c')
-rw-r--r-- | drivers/acpi/acpica/utobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/acpi/acpica/utobject.c b/drivers/acpi/acpica/utobject.c index 7d83efe1ea29..c7e11ccb09ba 100644 --- a/drivers/acpi/acpica/utobject.c +++ b/drivers/acpi/acpica/utobject.c | |||
@@ -253,7 +253,7 @@ union acpi_operand_object *acpi_ut_create_buffer_object(acpi_size buffer_size) | |||
253 | buffer = ACPI_ALLOCATE_ZEROED(buffer_size); | 253 | buffer = ACPI_ALLOCATE_ZEROED(buffer_size); |
254 | if (!buffer) { | 254 | if (!buffer) { |
255 | ACPI_ERROR((AE_INFO, "Could not allocate size %u", | 255 | ACPI_ERROR((AE_INFO, "Could not allocate size %u", |
256 | (u32) buffer_size)); | 256 | (u32)buffer_size)); |
257 | acpi_ut_remove_reference(buffer_desc); | 257 | acpi_ut_remove_reference(buffer_desc); |
258 | return_PTR(NULL); | 258 | return_PTR(NULL); |
259 | } | 259 | } |
@@ -305,7 +305,7 @@ union acpi_operand_object *acpi_ut_create_string_object(acpi_size string_size) | |||
305 | string = ACPI_ALLOCATE_ZEROED(string_size + 1); | 305 | string = ACPI_ALLOCATE_ZEROED(string_size + 1); |
306 | if (!string) { | 306 | if (!string) { |
307 | ACPI_ERROR((AE_INFO, "Could not allocate size %u", | 307 | ACPI_ERROR((AE_INFO, "Could not allocate size %u", |
308 | (u32) string_size)); | 308 | (u32)string_size)); |
309 | acpi_ut_remove_reference(string_desc); | 309 | acpi_ut_remove_reference(string_desc); |
310 | return_PTR(NULL); | 310 | return_PTR(NULL); |
311 | } | 311 | } |