summaryrefslogtreecommitdiffstats
path: root/drivers/video/ati_radeon_fb.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-11-07 03:03:28 +0900
committerTom Rini <trini@ti.com>2014-11-20 11:28:25 -0500
commitcba1da495daa3bfa29372b5eb28cb49302ef0a72 (patch)
treef7967f55bf3cdd375aefbb3f0c124fde315a117e /drivers/video/ati_radeon_fb.c
parent9e57a1c3ad58cfb4bdf27596a9b768f7584f1040 (diff)
downloadtalos-obmc-uboot-cba1da495daa3bfa29372b5eb28cb49302ef0a72.tar.gz
talos-obmc-uboot-cba1da495daa3bfa29372b5eb28cb49302ef0a72.zip
include: move various macros to include/linux/kernel.h
U-Boot has imported various utility macros from Linux scattering them to various places without consistency. In include/common.h are min, max, min3, max3, ARRAY_SIZE, ALIGN, container_of, DIV_ROUND_UP, etc. In include/linux/compat.h are min_t, max_t, round_up, round_down, etc. We also have duplicated defines of min_t in some *.c files. Moreover, we are suffering from too cluttered include/common.h. This commit moves various macros that originate in include/linux/kernel.h of Linux to their original position. Note: This commit simply moves the macros; the macros roundup, min, max, min2, max3, ARRAY_SIZE are different from those of Linux at this point. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'drivers/video/ati_radeon_fb.c')
-rw-r--r--drivers/video/ati_radeon_fb.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/video/ati_radeon_fb.c b/drivers/video/ati_radeon_fb.c
index 38d2eb107e..618f5d93b6 100644
--- a/drivers/video/ati_radeon_fb.c
+++ b/drivers/video/ati_radeon_fb.c
@@ -39,11 +39,6 @@
#define DPRINT(x...) do{}while(0)
#endif
-#ifndef min_t
-#define min_t(type,x,y) \
- ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; })
-#endif
-
#define MAX_MAPPED_VRAM (2048*2048*4)
#define MIN_MAPPED_VRAM (1024*768*1)
OpenPOWER on IntegriCloud