Commit b6c55b16 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

ACPI: scan: Change acpi_scan_init() return value type to void

The only caller of acpi_scan_init(), acpi_init(), doesn't check its
return value, so turn it into a void function.

This avoids complaints from the Smatch static checker that the
function should return a negative error code when it fails, which
is not really a problem in this particular case.

No intentional functional impact.

Link: https://lore.kernel.org/linux-acpi/20220106082317.GA9123@kili/Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
Reviewed-by: default avatarMika Westerberg <mika.westerberg@linux.intel.com>
Reviewed-by: default avatarHans de Goede <hdegoede@redhat.com>
parent bca21755
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
int early_acpi_osi_init(void); int early_acpi_osi_init(void);
int acpi_osi_init(void); int acpi_osi_init(void);
acpi_status acpi_os_initialize1(void); acpi_status acpi_os_initialize1(void);
int acpi_scan_init(void); void acpi_scan_init(void);
#ifdef CONFIG_PCI #ifdef CONFIG_PCI
void acpi_pci_root_init(void); void acpi_pci_root_init(void);
void acpi_pci_link_init(void); void acpi_pci_link_init(void);
......
...@@ -2542,9 +2542,8 @@ static void __init acpi_get_spcr_uart_addr(void) ...@@ -2542,9 +2542,8 @@ static void __init acpi_get_spcr_uart_addr(void)
static bool acpi_scan_initialized; static bool acpi_scan_initialized;
int __init acpi_scan_init(void) void __init acpi_scan_init(void)
{ {
int result;
acpi_status status; acpi_status status;
struct acpi_table_stao *stao_ptr; struct acpi_table_stao *stao_ptr;
...@@ -2594,8 +2593,7 @@ int __init acpi_scan_init(void) ...@@ -2594,8 +2593,7 @@ int __init acpi_scan_init(void)
/* /*
* Enumerate devices in the ACPI namespace. * Enumerate devices in the ACPI namespace.
*/ */
result = acpi_bus_scan(ACPI_ROOT_OBJECT); if (acpi_bus_scan(ACPI_ROOT_OBJECT))
if (result)
goto out; goto out;
acpi_root = acpi_fetch_acpi_dev(ACPI_ROOT_OBJECT); acpi_root = acpi_fetch_acpi_dev(ACPI_ROOT_OBJECT);
...@@ -2604,8 +2602,7 @@ int __init acpi_scan_init(void) ...@@ -2604,8 +2602,7 @@ int __init acpi_scan_init(void)
/* Fixed feature devices do not exist on HW-reduced platform */ /* Fixed feature devices do not exist on HW-reduced platform */
if (!acpi_gbl_reduced_hardware) { if (!acpi_gbl_reduced_hardware) {
result = acpi_bus_scan_fixed(); if (acpi_bus_scan_fixed()) {
if (result) {
acpi_detach_data(acpi_root->handle, acpi_detach_data(acpi_root->handle,
acpi_scan_drop_device); acpi_scan_drop_device);
acpi_device_del(acpi_root); acpi_device_del(acpi_root);
...@@ -2620,7 +2617,6 @@ int __init acpi_scan_init(void) ...@@ -2620,7 +2617,6 @@ int __init acpi_scan_init(void)
out: out:
mutex_unlock(&acpi_scan_lock); mutex_unlock(&acpi_scan_lock);
return result;
} }
static struct acpi_probe_entry *ape; static struct acpi_probe_entry *ape;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment