It's needed to delete attrib, where the previous definition was. --- android/hog.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/android/hog.c b/android/hog.c index 9276d40..eb9c9d4 100644 --- a/android/hog.c +++ b/android/hog.c @@ -59,6 +59,10 @@ #include "android/bas.h" #include "android/hog.h" +#ifndef MIN +#define MIN(a, b) (((a) < (b)) ? (a) : (b)) +#endif + #define HOG_REPORT_TYPE_INPUT 1 #define HOG_REPORT_TYPE_OUTPUT 2 #define HOG_REPORT_TYPE_FEATURE 3 -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html