From: Jaehoon Chung Date: Wed, 27 Sep 2017 07:40:25 +0000 (+0900) Subject: arch: sc8830: sci_types: remove the redefined macro X-Git-Tag: submit/tizen/20170928.101559~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cc87b8fa384fa510aa2ed75ca7325cef229a8f31;p=profile%2Fmobile%2Fplatform%2Fkernel%2Fu-boot-tm1.git arch: sc8830: sci_types: remove the redefined macro Arleady defined 'MAX' and 'MIN' in include/common.h Remove the redefined 'MAX'/'MIN' macro. Change-Id: I7a5a15ee137b87133f619ac1803843734c10762c Signed-off-by: Jaehoon Chung --- diff --git a/arch/arm/include/asm/arch-sc8830/sci_types.h b/arch/arm/include/asm/arch-sc8830/sci_types.h index 82f97ee..fbedf9a 100644 --- a/arch/arm/include/asm/arch-sc8830/sci_types.h +++ b/arch/arm/include/asm/arch-sc8830/sci_types.h @@ -153,9 +153,6 @@ typedef uint32 BLOCK_ID; /* some usefule marcos */ #define Bit(_i) ((u32) 1<<(_i)) -#define MAX( _x, _y ) ( ((_x) > (_y)) ? (_x) : (_y) ) - -#define MIN( _x, _y ) ( ((_x) < (_y)) ? (_x) : (_y) ) #define WORD_LO(_xxx) ((uint8) ((int16)(_xxx))) #define WORD_HI(_xxx) ((uint8) ((int16)(_xxx) >> 8))