arch: sc8830: sci_types: remove the redefined macro 62/152862/2
authorJaehoon Chung <jh80.chung@samsung.com>
Wed, 27 Sep 2017 07:40:25 +0000 (16:40 +0900)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Wed, 27 Sep 2017 12:08:26 +0000 (12:08 +0000)
Arleady defined 'MAX' and 'MIN' in include/common.h
Remove the redefined 'MAX'/'MIN' macro.

Change-Id: I7a5a15ee137b87133f619ac1803843734c10762c
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
arch/arm/include/asm/arch-sc8830/sci_types.h

index 82f97ee..fbedf9a 100644 (file)
@@ -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))