Skip to content

Commit

Permalink
Staging: quickstart: Cleanup quickstart_acpi_add
Browse files Browse the repository at this point in the history
Signed-off-by: Szymon Janc <szymon@janc.net.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Szymon Janc authored and Greg Kroah-Hartman committed Feb 9, 2012
1 parent 60955f1 commit f27a551
Showing 1 changed file with 14 additions and 8 deletions.
22 changes: 14 additions & 8 deletions drivers/staging/quickstart/quickstart.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,29 +262,29 @@ static int quickstart_acpi_config(struct quickstart_acpi *quickstart, char *bid)

static int quickstart_acpi_add(struct acpi_device *device)
{
int ret = 0;
acpi_status status = AE_OK;
struct quickstart_acpi *quickstart = NULL;
int ret;
acpi_status status;
struct quickstart_acpi *quickstart;

if (!device)
return -EINVAL;

quickstart = kzalloc(sizeof(struct quickstart_acpi), GFP_KERNEL);
quickstart = kzalloc(sizeof(*quickstart), GFP_KERNEL);
if (!quickstart)
return -ENOMEM;

quickstart->device = device;

strcpy(acpi_device_name(device), QUICKSTART_ACPI_DEVICE_NAME);
strcpy(acpi_device_class(device), QUICKSTART_ACPI_CLASS);
device->driver_data = quickstart;

/* Add button to list and initialize some stuff */
ret = quickstart_acpi_config(quickstart, acpi_device_bid(device));
if (ret)
if (ret < 0)
goto fail_config;

status = acpi_install_notify_handler(device->handle,
ACPI_ALL_NOTIFY,
status = acpi_install_notify_handler(device->handle, ACPI_ALL_NOTIFY,
quickstart_acpi_notify,
quickstart);
if (ACPI_FAILURE(status)) {
Expand All @@ -293,10 +293,16 @@ static int quickstart_acpi_add(struct acpi_device *device)
goto fail_installnotify;
}

quickstart_acpi_ghid(quickstart);
ret = quickstart_acpi_ghid(quickstart);
if (ret < 0)
goto fail_ghid;

return 0;

fail_ghid:
acpi_remove_notify_handler(device->handle, ACPI_ALL_NOTIFY,
quickstart_acpi_notify);

fail_installnotify:
quickstart_btnlst_del(quickstart->btn);

Expand Down

0 comments on commit f27a551

Please sign in to comment.