From fe4313f88763ac466ff7b957bad1c999547fbec0 Mon Sep 17 00:00:00 2001 From: Raphael Kubo da Costa Date: Mon, 6 Apr 2015 12:36:24 +0000 Subject: bthidd: Remove unused macros from hid.c. ASIZE() was never used, and min() stopped being used in r207812. Differential Revision: https://reviews.freebsd.org/D2230 Reviewed by: emax Approved by: emax MFC after: 1 week --- usr.sbin/bluetooth/bthidd/hid.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'usr.sbin/bluetooth') diff --git a/usr.sbin/bluetooth/bthidd/hid.c b/usr.sbin/bluetooth/bthidd/hid.c index 5eb7592da5c9..0a5ebffe4109 100644 --- a/usr.sbin/bluetooth/bthidd/hid.c +++ b/usr.sbin/bluetooth/bthidd/hid.c @@ -48,12 +48,6 @@ #include "bthidd.h" #include "kbd.h" -#undef min -#define min(x, y) (((x) < (y))? (x) : (y)) - -#undef ASIZE -#define ASIZE(a) (sizeof(a)/sizeof(a[0])) - /* * Process data from control channel */ -- cgit v1.2.3