staging: unisys: remove redundant max macro

No need to have another max macro when the kernel has one already.

Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Benjamin Romer 2014-10-03 14:09:20 -04:00 committed by Greg Kroah-Hartman
parent e99454578a
commit 38d1fd3d0e

View File

@ -146,10 +146,6 @@
schedule_timeout(x); \
} while (0)
#ifndef max
#define max(a, b) (((a) > (b)) ? (a) : (b))
#endif
static inline struct cdev *cdev_alloc_init(struct module *owner,
const struct file_operations *fops)
{