Whamcloud - gitweb
LU-9679 modules: convert MIN/MAX to kernel style
[fs/lustre-release.git] / libcfs / include / libcfs / libcfs_private.h
index e0fcdbe..27db6b7 100644 (file)
@@ -351,14 +351,6 @@ do {                                                            \
 /* logical equivalence */
 #define equi(a, b) (!!(a) == !!(b))
 
-/* what used to be in portals_lib.h */
-#ifndef MIN
-# define MIN(a,b) (((a)<(b)) ? (a): (b))
-#endif
-#ifndef MAX
-# define MAX(a,b) (((a)>(b)) ? (a): (b))
-#endif
-
 #define MKSTR(ptr) ((ptr))? (ptr) : ""
 
 static inline size_t cfs_size_round4(size_t val)