Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Apr 2016 19:48:28 +0000 (UTC)
From:      "Pedro F. Giffuni" <pfg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r298432 - head/sys/dev/aic
Message-ID:  <201604211948.u3LJmSlo014172@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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[] = {



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