From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030525AbbD1OyO (ORCPT ); Tue, 28 Apr 2015 10:54:14 -0400 Received: from mo4-p00-ob.smtp.rzone.de ([81.169.146.161]:20979 "EHLO mo4-p00-ob.smtp.rzone.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965724AbbD1OyM (ORCPT ); Tue, 28 Apr 2015 10:54:12 -0400 X-RZG-AUTH: :P2EQZWCpfu+qG7CngxMFH1J+yackYocTD1iAi8x+OWi/zfN1cLnBYfssVo1SFZSlV1o5+W2fPusosI8UFDsorAjgj3RvrQ== X-RZG-CLASS-ID: mo00 From: Olaf Hering To: Robert Moore , Lv Zheng , "Rafael J. Wysocki" , Len Brown Cc: linux-acpi@vger.kernel.org, devel@acpica.org, linux-kernel@vger.kernel.org, Olaf Hering Subject: [PATCH] ACPICA: remove duplicate u8 typedef Date: Tue, 28 Apr 2015 16:54:04 +0200 Message-Id: <1430232844-11018-1-git-send-email-olaf@aepfle.de> X-Mailer: git-send-email 2.3.5 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org During commit e252652fb2664d42de19f933aa3688bbc470de3f ("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 --- include/acpi/actypes.h | 1 - 1 file changed, 1 deletion(-) 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;