]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
intel-rst: Clean up ACPI add function
authorPeter Ujfalusi <peter.ujfalusi@gmail.com>
Tue, 16 Sep 2014 21:13:56 +0000 (00:13 +0300)
committerDarren Hart <dvhart@linux.intel.com>
Wed, 17 Sep 2014 20:55:54 +0000 (13:55 -0700)
There is no need to initialize the error since it is going to be assigned
with the return status of at least on of the device_create_file() call.

We can return directly in case the first file creation fails.
All the labels for goto can be removed (along with the gotos) as well.
Tell the compiler that the failures are unlikely so it can create better
binaries.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
drivers/platform/x86/intel-rst.c

index 8c6a8fed8a0888bee90713006f571f433ffb6c5d..7344d841f4d98d17810b5f6bdbee8965415af6e5 100644 (file)
@@ -119,21 +119,16 @@ static struct device_attribute irst_timeout_attr = {
 
 static int irst_add(struct acpi_device *acpi)
 {
-       int error = 0;
+       int error;
 
        error = device_create_file(&acpi->dev, &irst_timeout_attr);
-       if (error)
-               goto out;
+       if (unlikely(error))
+               return error;
 
        error = device_create_file(&acpi->dev, &irst_wakeup_attr);
-       if (error)
-               goto out_timeout;
+       if (unlikely(error))
+               device_remove_file(&acpi->dev, &irst_timeout_attr);
 
-       return 0;
-
-out_timeout:
-       device_remove_file(&acpi->dev, &irst_timeout_attr);
-out:
        return error;
 }