svn commit: r317995 - stable/10/sys/dev/ixgbe

Eric Joyner erj at FreeBSD.org
Tue May 9 00:51:12 UTC 2017


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);


More information about the svn-src-all mailing list