From: Jia He <hejianet@xxxxxxxxx> Date: Tue, 6 Sep 2016 10:30:04 +0800 +#define MAX(a, b) ((u32)(a) >= (u32)(b) ? (a) : (b))
+#define MAX(a, b) ((u32)(a) >= (u32)(b) ? (a) : (b))
Please do not define private min/max macros, use the existing max_t() or similar as needed.