aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
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 /drivers
parentcleanup: remove unnecessary initializer on static pointers (diff)
downloadlinux-dev-83ea7445221651dc43cf8d22f81089e0cbccf22b.tar.xz
linux-dev-83ea7445221651dc43cf8d22f81089e0cbccf22b.zip
[ACPI] fix build warning
Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers')
-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 e37162229342..a4b70dfdcf04 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;
}