Commit f532bdf6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] telephony: use kernel min/max

From: "Randy.Dunlap" <rddunlap@osdl.org>

From: Michael Veeck <michael.veeck@gmx.net>

Removes unnecessary min/max macros and use kernel.h macros instead.
parent da5f761d
......@@ -60,13 +60,6 @@ typedef __u8 BOOL;
#define TRUE 1
#define FALSE 0
#ifndef min
#define min(a,b) (((a)<(b))?(a):(b))
#endif
#ifndef max
#define max(a,b) (((a)>(b))?(a):(b))
#endif
/******************************************************************************
*
* This structure when unioned with the structures below makes simple byte
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment