summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2005-03-30 22:12:13 -0500
committerLen Brown <len.brown@intel.com>2005-07-11 23:56:57 -0400
commit83ea7445221651dc43cf8d22f81089e0cbccf22b (patch)
tree3235ef6b2469c2cd7a7243791661a0619f822438
parentf165b10f4a9aac7fee9b11a125de20a1712be128 (diff)
[ACPI] fix build warning
Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Len Brown <len.brown@intel.com>
-rw-r--r--drivers/acpi/ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index e3716222934..a4b70dfdcf0 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -638,7 +638,7 @@ next_byte:
if (function == ACPI_WRITE)
temp >>= 8;
i++;
- (u8)address ++;
+ address++;
goto next_byte;
}