Commit 9b645601 authored by Hanjun Guo's avatar Hanjun Guo Committed by Rafael J. Wysocki
Browse files

ACPI: bus: Remove unneeded assignment



When acpi_kobj is NULL already, assigning NULL to it is redundant,
so don't do that.

Signed-off-by: default avatarHanjun Guo <guohanjun@huawei.com>
[ rjw: Subject and changelog edits ]
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent be7ae568
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -1325,10 +1325,8 @@ static int __init acpi_init(void)
	}

	acpi_kobj = kobject_create_and_add("acpi", firmware_kobj);
	if (!acpi_kobj) {
	if (!acpi_kobj)
		pr_debug("%s: kset create error\n", __func__);
		acpi_kobj = NULL;
	}

	result = acpi_bus_init();
	if (result) {