ACPICA: Core: Major update for code formatting, no functional changes
[deliverable/linux.git] / drivers / acpi / acpica / utownerid.c
index 2959217067cb012beaa8f6de84df8299c094d3fe..ebb811c43c899b242483e52d5773137c5a2fe6af 100644 (file)
@@ -73,8 +73,8 @@ acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id)
        /* Guard against multiple allocations of ID to the same location */
 
        if (*owner_id) {
-               ACPI_ERROR((AE_INFO, "Owner ID [0x%2.2X] already exists",
-                           *owner_id));
+               ACPI_ERROR((AE_INFO,
+                           "Owner ID [0x%2.2X] already exists", *owner_id));
                return_ACPI_STATUS(AE_ALREADY_EXISTS);
        }
 
@@ -87,8 +87,8 @@ acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id)
 
        /*
         * Find a free owner ID, cycle through all possible IDs on repeated
-        * allocations. (ACPI_NUM_OWNERID_MASKS + 1) because first index may have
-        * to be scanned twice.
+        * allocations. (ACPI_NUM_OWNERID_MASKS + 1) because first index
+        * may have to be scanned twice.
         */
        for (i = 0, j = acpi_gbl_last_owner_id_index;
             i < (ACPI_NUM_OWNERID_MASKS + 1); i++, j++) {
@@ -141,8 +141,8 @@ acpi_status acpi_ut_allocate_owner_id(acpi_owner_id * owner_id)
         * they are released when a table is unloaded or a method completes
         * execution.
         *
-        * If this error happens, there may be very deep nesting of invoked control
-        * methods, or there may be a bug where the IDs are not released.
+        * If this error happens, there may be very deep nesting of invoked
+        * control methods, or there may be a bug where the IDs are not released.
         */
        status = AE_OWNER_ID_LIMIT;
        ACPI_ERROR((AE_INFO,
This page took 0.046777 seconds and 5 git commands to generate.