Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 May 2017 00:51:11 +0000 (UTC)
From:      Eric Joyner <erj@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r317995 - stable/10/sys/dev/ixgbe
Message-ID:  <201705090051.v490pBC5043136@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: erj
Date: Tue May  9 00:51:10 2017
New Revision: 317995
URL: https://svnweb.freebsd.org/changeset/base/317995

Log:
  ixv(4): Fix more tinderbox builds by adding missing declarations.
  
  Sponsored by:	Intel Corporation

Modified:
  stable/10/sys/dev/ixgbe/ixv_osdep.h

Modified: stable/10/sys/dev/ixgbe/ixv_osdep.h
==============================================================================
--- stable/10/sys/dev/ixgbe/ixv_osdep.h	Tue May  9 00:29:29 2017	(r317994)
+++ stable/10/sys/dev/ixgbe/ixv_osdep.h	Tue May  9 00:51:10 2017	(r317995)
@@ -162,6 +162,12 @@ struct ixgbe_osdep
 struct ixgbe_hw; 
 
 /* These routines are needed by the shared code */
+extern u16 ixv_read_pci_cfg(struct ixgbe_hw *, u32);
+#define IXGBE_READ_PCIE_WORD ixv_read_pci_cfg
+
+extern void ixv_write_pci_cfg(struct ixgbe_hw *, u32, u16);
+#define IXGBE_WRITE_PCIE_WORD ixv_write_pci_cfg
+
 #define IXGBE_WRITE_FLUSH(a) IXGBE_READ_REG(a, IXGBE_STATUS)
 
 extern u32 ixv_read_reg(struct ixgbe_hw *, u32);



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