From ef50fbe4387ab76a55e37dd618bcdad9736d7217 Mon Sep 17 00:00:00 2001 From: Szymon Janc Date: Wed, 12 Dec 2012 11:27:55 +0100 Subject: [PATCH] a2dp: Remove not used macros definitions MIN and MAX macros are not used. --- profiles/audio/a2dp.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c index 6df048d0d..66037f560 100644 --- a/profiles/audio/a2dp.c +++ b/profiles/audio/a2dp.c @@ -52,14 +52,6 @@ #define SUSPEND_TIMEOUT 5 #define RECONFIGURE_TIMEOUT 500 -#ifndef MIN -# define MIN(x, y) ((x) < (y) ? (x) : (y)) -#endif - -#ifndef MAX -# define MAX(x, y) ((x) > (y) ? (x) : (y)) -#endif - struct a2dp_sep { struct a2dp_server *server; struct a2dp_endpoint *endpoint; -- 2.47.3