diff options
author | Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> | 2010-06-09 15:48:39 -0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2010-08-03 09:48:46 -0400 |
commit | b95d13eaf3d4ea093aba95c7f615f3b10708a2c4 (patch) | |
tree | 932db97cfd3d5c2f4bc2e8bcd99d0cdaa661ed8e /drivers | |
parent | 0385e5210c83b13fe685c54b6063655f80bce3ee (diff) |
classmate-laptop: should check for NULL as retval for rfkill_alloc
rfkill_alloc returns NULL when it fails if RFKILL is enabled. When RFKILL is
disabled, its return value of ERR_PTR(-ENODEV) is OK to use as all rfkill
functions will work with it, as they are simply empty stubs.
Reported-by: Alan Jenkins <alan-jenkins@tuffmail.co.uk>
Cc: Johannes Berg <johannes@sipsolutions.net>
Cc: platform-driver-x86@vger.kernel.org
Cc: mjg@redhat.com
Cc: don@syst.com.br
Cc: rpurdie@rpsys.net
Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/platform/x86/classmate-laptop.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/platform/x86/classmate-laptop.c b/drivers/platform/x86/classmate-laptop.c index 3bf399fe2bbc..73ea76e6f21e 100644 --- a/drivers/platform/x86/classmate-laptop.c +++ b/drivers/platform/x86/classmate-laptop.c | |||
@@ -573,16 +573,17 @@ static int cmpc_ipml_add(struct acpi_device *acpi) | |||
573 | 573 | ||
574 | ipml->rf = rfkill_alloc("cmpc_rfkill", &acpi->dev, RFKILL_TYPE_WLAN, | 574 | ipml->rf = rfkill_alloc("cmpc_rfkill", &acpi->dev, RFKILL_TYPE_WLAN, |
575 | &cmpc_rfkill_ops, acpi->handle); | 575 | &cmpc_rfkill_ops, acpi->handle); |
576 | /* rfkill_alloc may fail if RFKILL is disabled. We should still work | 576 | /* |
577 | * anyway. */ | 577 | * If RFKILL is disabled, rfkill_alloc will return ERR_PTR(-ENODEV). |
578 | if (!IS_ERR(ipml->rf)) { | 578 | * This is OK, however, since all other uses of the device will not |
579 | * derefence it. | ||
580 | */ | ||
581 | if (ipml->rf) { | ||
579 | retval = rfkill_register(ipml->rf); | 582 | retval = rfkill_register(ipml->rf); |
580 | if (retval) { | 583 | if (retval) { |
581 | rfkill_destroy(ipml->rf); | 584 | rfkill_destroy(ipml->rf); |
582 | ipml->rf = NULL; | 585 | ipml->rf = NULL; |
583 | } | 586 | } |
584 | } else { | ||
585 | ipml->rf = NULL; | ||
586 | } | 587 | } |
587 | 588 | ||
588 | dev_set_drvdata(&acpi->dev, ipml); | 589 | dev_set_drvdata(&acpi->dev, ipml); |