]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ACPI / osl: Refactor acpi_os_get_root_pointer() to drop 'else':s
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 2 Dec 2016 17:42:47 +0000 (19:42 +0200)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 6 Dec 2016 21:13:58 +0000 (22:13 +0100)
There are few 'else' keywords which are redundant in
acpi_os_get_root_pointer(). Refactor function to get rid of them.

While here, switch to pr_err() instead of printk(KERN_ERR ...).

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/osl.c

index d47df72990dd6ac90fb955e6ce934b8a2dba277d..9a4c6abee63e0e86a6941d19665a409d3931b301 100644 (file)
@@ -188,6 +188,8 @@ early_param("acpi_rsdp", setup_acpi_rsdp);
 
 acpi_physical_address __init acpi_os_get_root_pointer(void)
 {
+       acpi_physical_address pa = 0;
+
 #ifdef CONFIG_KEXEC
        if (acpi_rsdp)
                return acpi_rsdp;
@@ -196,21 +198,14 @@ acpi_physical_address __init acpi_os_get_root_pointer(void)
        if (efi_enabled(EFI_CONFIG_TABLES)) {
                if (efi.acpi20 != EFI_INVALID_TABLE_ADDR)
                        return efi.acpi20;
-               else if (efi.acpi != EFI_INVALID_TABLE_ADDR)
+               if (efi.acpi != EFI_INVALID_TABLE_ADDR)
                        return efi.acpi;
-               else {
-                       printk(KERN_ERR PREFIX
-                              "System description tables not found\n");
-                       return 0;
-               }
+               pr_err(PREFIX "System description tables not found\n");
        } else if (IS_ENABLED(CONFIG_ACPI_LEGACY_TABLES_LOOKUP)) {
-               acpi_physical_address pa = 0;
-
                acpi_find_root_pointer(&pa);
-               return pa;
        }
 
-       return 0;
+       return pa;
 }
 
 /* Must be called with 'acpi_ioremap_lock' or RCU read lock held. */