Re: [RFC][PATCH 7/13] Equinox SST driver: driver structures

From: Andrew Morton
Date: Mon Jul 03 2006 - 20:09:30 EST


On Thu, 22 Jun 2006 09:17:48 -0400
"Straub, Michael" <Michael.Straub@xxxxxxxxxxx> wrote:

> +#ifndef MIN
> +#define MIN(a,b) (((a) < (b)) ? (a) : (b))
> +#endif
> +#ifndef MAX
> +#define MAX(a,b) (((a) > (b)) ? (a) : (b))
> +#endif

These should be removed - use min() and max() from <linux/kernel.h>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/