Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S966723AbbFJQKO (ORCPT ); Wed, 10 Jun 2015 12:10:14 -0400 Received: from mail-bl2on0113.outbound.protection.outlook.com ([65.55.169.113]:47296 "EHLO na01-bl2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S966681AbbFJQJR (ORCPT ); Wed, 10 Jun 2015 12:09:17 -0400 Authentication-Results: spf=none (sender IP is 165.204.84.222) smtp.mailfrom=amd.com; arm.com; dkim=none (message not signed) header.d=none; X-WSS-ID: 0NPQKV9-08-K9J-02 X-M-MSG: From: Suravee Suthikulpanit To: , , , , , , , , , , , CC: , , , , , , , , , , , "Suravee Suthikulpanit" Subject: [V6 PATCH 7/7] ufs: fix TRUE and FALSE re-define build error Date: Wed, 10 Jun 2015 11:08:58 -0500 Message-ID: <1433952538-22455-8-git-send-email-Suravee.Suthikulpanit@amd.com> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1433952538-22455-1-git-send-email-Suravee.Suthikulpanit@amd.com> References: <1433952538-22455-1-git-send-email-Suravee.Suthikulpanit@amd.com> MIME-Version: 1.0 Content-Type: text/plain X-EOPAttributedMessage: 0 X-Microsoft-Exchange-Diagnostics: 1;BY2FFO11FD042;1:xyGCZZWqMI62PjUHenEegI5b/xbT7JDgaB4Bctk30ALUsI2YmGUjjgj/smmXWDtRxvPuGAWKAzYkvDj+ItIWrqHtXaXR0cJpED5hUAw8Ynz/aiUyN+q0zoOh09fNswQYtjqYEd9yMrvFCDjNtM3iSbF2PzxdKhcL0vUjBrZplgcSldAkP47bmb+4ZUCHffzJ6do6RtQRfYqX7dIzS9CGZLDhRCjCvn4tLgc2h29wDQjcpFGfOiv3WKydyJOrU+65dox2RlwMYAGSi/4VH9AHJDrYrpV1pM8O10QUnoyHcabiL4vAhVjU3AQK5j1UJOlhU72ekHjQ1PHHvDI6TxFeZQ== X-Forefront-Antispam-Report: CIP:165.204.84.222;CTRY:US;IPV:NLI;EFV:NLI;SFV:NSPM;SFS:(10019020)(6009001)(428002)(199003)(189002)(77096005)(62966003)(53416004)(19580395003)(87936001)(50226001)(575784001)(2201001)(229853001)(36756003)(189998001)(86362001)(92566002)(19580405001)(76176999)(101416001)(2950100001)(5001770100001)(46102003)(47776003)(48376002)(105586002)(77156002)(50986999)(5003600100002)(921003)(1121003);DIR:OUT;SFP:1102;SCL:1;SRVR:BLUPR02MB067;H:atltwp02.amd.com;FPR:;SPF:None;MLV:sfv;A:1;MX:1;LANG:en; X-Microsoft-Antispam: UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BLUPR02MB067;UriScan:;BCL:0;PCL:0;RULEID:;SRVR:BLUPR02MB1713; X-Microsoft-Antispam-PRVS: X-Exchange-Antispam-Report-Test: UriScan:; X-Exchange-Antispam-Report-CFA-Test: BCL:0;PCL:0;RULEID:(601004)(5005006)(520003)(3002001);SRVR:BLUPR02MB067;BCL:0;PCL:0;RULEID:;SRVR:BLUPR02MB067; X-Forefront-PRVS: 06036BD506 X-MS-Exchange-CrossTenant-OriginalArrivalTime: 10 Jun 2015 16:09:11.3510 (UTC) X-MS-Exchange-CrossTenant-Id: fde4dada-be84-483f-92cc-e026cbee8e96 X-MS-Exchange-CrossTenant-OriginalAttributedTenantConnectingIp: TenantId=fde4dada-be84-483f-92cc-e026cbee8e96;Ip=[165.204.84.222];Helo=[atltwp02.amd.com] X-MS-Exchange-CrossTenant-FromEntityHeader: HybridOnPrem X-MS-Exchange-Transport-CrossTenantHeadersStamped: BLUPR02MB067 X-OriginatorOrg: amd.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 852 Lines: 33 Signed-off-by: Suravee Suthikulpanit Cc: Vinayak Holikatti --- drivers/scsi/ufs/unipro.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/scsi/ufs/unipro.h b/drivers/scsi/ufs/unipro.h index 3fc3e21..816a8a4 100644 --- a/drivers/scsi/ufs/unipro.h +++ b/drivers/scsi/ufs/unipro.h @@ -198,6 +198,14 @@ enum ufs_hs_gear_tag { #define T_TC0TXMAXSDUSIZE 0x4060 #define T_TC1TXMAXSDUSIZE 0x4061 +#ifdef FALSE +#undef FALSE +#endif + +#ifdef TRUE +#undef TRUE +#endif + /* Boolean attribute values */ enum { FALSE = 0, -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/