Merge 'staging-next' to Linus's tree
This merges the staging-next tree to Linus's tree and resolves some conflicts that were present due to changes in other trees that were affected by files here. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
@@ -397,16 +397,15 @@ static int __init quickstart_init_input(void)
|
||||
static int __init quickstart_init(void)
|
||||
{
|
||||
int ret;
|
||||
acpi_status status = 0;
|
||||
|
||||
/* ACPI Check */
|
||||
if (acpi_disabled)
|
||||
return -ENODEV;
|
||||
|
||||
/* ACPI driver register */
|
||||
status = acpi_bus_register_driver(&quickstart_acpi_driver);
|
||||
if (status < 0)
|
||||
return -ENODEV;
|
||||
ret = acpi_bus_register_driver(&quickstart_acpi_driver);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* If existing bus with no devices */
|
||||
if (!quickstart_data.btn_lst) {
|
||||
|
Reference in New Issue
Block a user