svn commit: r335462 - head/sys/dev/ixl

Eric Joyner erj at FreeBSD.org
Wed Jun 20 22:16:47 UTC 2018


Author: erj
Date: Wed Jun 20 22:16:46 2018
New Revision: 335462
URL: https://svnweb.freebsd.org/changeset/base/335462

Log:
  ixl(4): Fix gcc build errors
  
  By removing redundant function declarations.
  
  Reported by:	ci.freebsd.org via Mark Millard <marklmi at yahoo.com>
  MFC after:	1 month

Modified:
  head/sys/dev/ixl/ixl.h
  head/sys/dev/ixl/ixl_pf.h

Modified: head/sys/dev/ixl/ixl.h
==============================================================================
--- head/sys/dev/ixl/ixl.h	Wed Jun 20 20:04:20 2018	(r335461)
+++ head/sys/dev/ixl/ixl.h	Wed Jun 20 22:16:46 2018	(r335462)
@@ -542,7 +542,6 @@ extern const uint8_t ixl_bcast_addr[ETHER_ADDR_LEN];
 
 /* Common function prototypes between PF/VF driver */
 void		 ixl_init_tx_ring(struct ixl_vsi *vsi, struct ixl_tx_queue *que);
-void		 ixl_set_queue_rx_itr(struct ixl_rx_queue *que);
 void		 ixl_get_default_rss_key(u32 *);
 const char *	i40e_vc_stat_str(struct i40e_hw *hw,
     enum virtchnl_status_code stat_err);

Modified: head/sys/dev/ixl/ixl_pf.h
==============================================================================
--- head/sys/dev/ixl/ixl_pf.h	Wed Jun 20 20:04:20 2018	(r335461)
+++ head/sys/dev/ixl/ixl_pf.h	Wed Jun 20 22:16:46 2018	(r335462)
@@ -401,7 +401,5 @@ s32	ixl_write_i2c_byte_aq(struct ixl_pf *pf, u8 byte_o
 
 int	ixl_get_fw_lldp_status(struct ixl_pf *pf);
 int	ixl_attach_get_link_status(struct ixl_pf *);
-u64	ixl_max_aq_speed_to_value(u8);
-void	ixl_handle_vflr(void *, int);
 
 #endif /* _IXL_PF_H_ */


More information about the svn-src-head mailing list