ACPICA: Core: Major update for code formatting, no functional changes
[deliverable/linux.git] / drivers / acpi / acpica / exconvrt.c
index 145de28c702d19afed2d5c54ea90c3879f4da1f2..73c2e823488dfd6421023bcf9004c6d2128d2274 100644 (file)
@@ -227,8 +227,8 @@ acpi_ex_convert_to_buffer(union acpi_operand_object *obj_desc,
                /* Copy the integer to the buffer, LSB first */
 
                new_buf = return_desc->buffer.pointer;
-               memcpy(new_buf,
-                      &obj_desc->integer.value, acpi_gbl_integer_byte_width);
+               memcpy(new_buf, &obj_desc->integer.value,
+                      acpi_gbl_integer_byte_width);
                break;
 
        case ACPI_TYPE_STRING:
@@ -354,9 +354,8 @@ acpi_ex_convert_to_ascii(u64 integer, u16 base, u8 *string, u8 data_width)
 
                        /* Get one hex digit, most significant digits first */
 
-                       string[k] =
-                           (u8)acpi_ut_hex_to_ascii_char(integer,
-                                                         ACPI_MUL_4(j));
+                       string[k] = (u8)
+                           acpi_ut_hex_to_ascii_char(integer, ACPI_MUL_4(j));
                        k++;
                }
                break;
This page took 0.031926 seconds and 5 git commands to generate.