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
This commit is contained in:
Raphael Kubo da Costa 2015-04-06 12:36:24 +00:00
parent fb5e95b4f6
commit fe4313f887

View File

@ -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
*/