Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Apr 2015 22:17:17 +0000 (UTC)
From:      Raphael Kubo da Costa <rakuco@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r281569 - stable/9/usr.sbin/bluetooth/bthidd
Message-ID:  <201504152217.t3FMHHdk025000@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rakuco (ports committer)
Date: Wed Apr 15 22:17:16 2015
New Revision: 281569
URL: https://svnweb.freebsd.org/changeset/base/281569

Log:
  MFC r281146.
  
  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

Modified:
  stable/9/usr.sbin/bluetooth/bthidd/hid.c
Directory Properties:
  stable/9/usr.sbin/bluetooth/bthidd/   (props changed)

Modified: stable/9/usr.sbin/bluetooth/bthidd/hid.c
==============================================================================
--- stable/9/usr.sbin/bluetooth/bthidd/hid.c	Wed Apr 15 22:15:23 2015	(r281568)
+++ stable/9/usr.sbin/bluetooth/bthidd/hid.c	Wed Apr 15 22:17:16 2015	(r281569)
@@ -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
  */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504152217.t3FMHHdk025000>