diff options
author | Andrew Morton <akpm@osdl.org> | 2005-03-30 22:12:13 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2005-07-11 23:56:57 -0400 |
commit | 83ea7445221651dc43cf8d22f81089e0cbccf22b (patch) | |
tree | 3235ef6b2469c2cd7a7243791661a0619f822438 /drivers | |
parent | f165b10f4a9aac7fee9b11a125de20a1712be128 (diff) |
[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.c | 2 |
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: | |||
638 | if (function == ACPI_WRITE) | 638 | if (function == ACPI_WRITE) |
639 | temp >>= 8; | 639 | temp >>= 8; |
640 | i++; | 640 | i++; |
641 | (u8)address ++; | 641 | address++; |
642 | goto next_byte; | 642 | goto next_byte; |
643 | } | 643 | } |
644 | 644 | ||