diff options
Diffstat (limited to 'drivers/acpi/acpica/hwgpe.c')
| -rw-r--r-- | drivers/acpi/acpica/hwgpe.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/acpi/acpica/hwgpe.c b/drivers/acpi/acpica/hwgpe.c index 64560045052..20d02e93c99 100644 --- a/drivers/acpi/acpica/hwgpe.c +++ b/drivers/acpi/acpica/hwgpe.c @@ -5,7 +5,7 @@   *****************************************************************************/  /* - * Copyright (C) 2000 - 2012, Intel Corp. + * Copyright (C) 2000 - 2013, Intel Corp.   * All rights reserved.   *   * Redistribution and use in source and binary forms, with or without @@ -69,8 +69,10 @@ acpi_hw_enable_wakeup_gpe_block(struct acpi_gpe_xrupt_info *gpe_xrupt_info,  u32 acpi_hw_get_gpe_register_bit(struct acpi_gpe_event_info *gpe_event_info)  { -	return (u32)1 << (gpe_event_info->gpe_number - -		 gpe_event_info->register_info->base_gpe_number); + +	return ((u32)1 << +		(gpe_event_info->gpe_number - +		 gpe_event_info->register_info->base_gpe_number));  }  /****************************************************************************** @@ -133,7 +135,7 @@ acpi_hw_low_set_gpe(struct acpi_gpe_event_info *gpe_event_info, u32 action)  		break;  	default: -		ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u\n", action)); +		ACPI_ERROR((AE_INFO, "Invalid GPE Action, %u", action));  		return (AE_BAD_PARAMETER);  	}  |