Skip to content

Commit

Permalink
ACPI: ibm-acpi: trivial Lindent cleanups
Browse files Browse the repository at this point in the history
This patch just makes drives/acpi/ibm-acpi.c Lindent-clean, as requested by
Len Brown.

Signed-off-by: Henrique de Moraes Holschuh <hmh@hmh.eng.br>
  • Loading branch information
Henrique de Moraes Holschuh authored and Len Brown committed Dec 7, 2006
1 parent 3dfd35c commit 8d29726
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions drivers/acpi/ibm_acpi.c
Original file line number Diff line number Diff line change
Expand Up @@ -584,8 +584,7 @@ static int wan_status(void)
{
int status;

if (!wan_supported ||
!acpi_evalf(hkey_handle, &status, "GWAN", "d"))
if (!wan_supported || !acpi_evalf(hkey_handle, &status, "GWAN", "d"))
status = 0;

return status;
Expand Down Expand Up @@ -910,6 +909,7 @@ static int _sta(acpi_handle handle)

return status;
}

#ifdef CONFIG_ACPI_IBM_DOCK
#define dock_docked() (_sta(dock_handle) & 1)

Expand Down Expand Up @@ -1386,12 +1386,12 @@ static int brightness_offset = 0x31;

static int brightness_get(struct backlight_device *bd)
{
u8 level;
if (!acpi_ec_read(brightness_offset, &level))
return -EIO;
u8 level;
if (!acpi_ec_read(brightness_offset, &level))
return -EIO;

level &= 0x7;
return level;
level &= 0x7;
return level;
}

static int brightness_read(char *p)
Expand Down Expand Up @@ -1993,10 +1993,10 @@ IBM_PARAM(volume);
IBM_PARAM(fan);

static struct backlight_properties ibm_backlight_data = {
.owner = THIS_MODULE,
.get_brightness = brightness_get,
.update_status = brightness_update_status,
.max_brightness = 7,
.owner = THIS_MODULE,
.get_brightness = brightness_get,
.update_status = brightness_update_status,
.max_brightness = 7,
};

static void acpi_ibm_exit(void)
Expand Down Expand Up @@ -2075,7 +2075,7 @@ static int __init acpi_ibm_init(void)

ibm_backlight_device = backlight_device_register("ibm", NULL,
&ibm_backlight_data);
if (IS_ERR(ibm_backlight_device)) {
if (IS_ERR(ibm_backlight_device)) {
printk(IBM_ERR "Could not register ibm backlight device\n");
ibm_backlight_device = NULL;
acpi_ibm_exit();
Expand Down

0 comments on commit 8d29726

Please sign in to comment.