Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 24 Apr 2017 11:12:04 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r317362 - stable/11/sys/dev/isp
Message-ID:  <201704241112.v3OBC4ew026757@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Mon Apr 24 11:12:03 2017
New Revision: 317362
URL: https://svnweb.freebsd.org/changeset/base/317362

Log:
  MFC r315913: Add brackets to fix incorrect macro expansion.

Modified:
  stable/11/sys/dev/isp/ispmbox.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/isp/ispmbox.h
==============================================================================
--- stable/11/sys/dev/isp/ispmbox.h	Mon Apr 24 11:06:10 2017	(r317361)
+++ stable/11/sys/dev/isp/ispmbox.h	Mon Apr 24 11:12:03 2017	(r317362)
@@ -1207,7 +1207,7 @@ typedef struct {
 #define	ICB2400_VPINFO_OFF	0x80	/* offset from start of ICB */
 #define	ICB2400_VPINFO_PORT_OFF(chan)		\
     (ICB2400_VPINFO_OFF + 			\
-     sizeof (isp_icb_2400_vpinfo_t) + (chan * ICB2400_VPOPT_WRITE_SIZE))
+     sizeof (isp_icb_2400_vpinfo_t) + ((chan) * ICB2400_VPOPT_WRITE_SIZE))
 
 #define	ICB2400_VPGOPT_FCA		0x01	/* Assume Clean Address bit in FLOGI ACC set (works only in static configurations) */
 #define	ICB2400_VPGOPT_MID_DISABLE	0x02	/* when set, connection mode2 will work with NPIV-capable switched */



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