svn commit: r298432 - head/sys/dev/aic

Pedro F. Giffuni pfg at FreeBSD.org
Thu Apr 21 19:48:30 UTC 2016


Author: pfg
Date: Thu Apr 21 19:48:28 2016
New Revision: 298432
URL: https://svnweb.freebsd.org/changeset/base/298432

Log:
  Redundant parenthesis from r298431.

Modified:
  head/sys/dev/aic/aic_isa.c

Modified: head/sys/dev/aic/aic_isa.c
==============================================================================
--- head/sys/dev/aic/aic_isa.c	Thu Apr 21 19:40:10 2016	(r298431)
+++ head/sys/dev/aic/aic_isa.c	Thu Apr 21 19:48:28 2016	(r298432)
@@ -57,7 +57,8 @@ static int aic_isa_probe(device_t);
 static int aic_isa_attach(device_t);
 
 static u_int aic_isa_ports[] = { 0x340, 0x140 };
-#define	AIC_ISA_NUMPORTS (nitems(aic_isa_ports))
+
+#define	AIC_ISA_NUMPORTS nitems(aic_isa_ports)
 #define	AIC_ISA_PORTSIZE 0x20
 
 static struct isa_pnp_id aic_ids[] = {


More information about the svn-src-head mailing list