From: Olaf Hering Date: Tue, 28 Apr 2015 14:54:04 +0000 (+0200) Subject: ACPICA: remove duplicate u8 typedef X-Git-Tag: v5.15~15839^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e9d55e69a95f8583283d9f01b04562d1278c95d;p=platform%2Fkernel%2Flinux-starfive.git ACPICA: remove duplicate u8 typedef During commit e252652fb266 ("ACPICA: acpidump: Remove integer types translation protection.") two 'unsigned char' types got converted to 'u8'. The result does not compile with gcc-4.5, it can not cope with duplicate typedefs. Signed-off-by: Olaf Hering Signed-off-by: Rafael J. Wysocki --- diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index f5ca0e9..1c3002e 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h @@ -124,7 +124,6 @@ #ifndef ACPI_USE_SYSTEM_INTTYPES typedef unsigned char u8; -typedef unsigned char u8; typedef unsigned short u16; typedef short s16; typedef COMPILER_DEPENDENT_UINT64 u64;