diff options
| author | Jean-Sébastien Pédron <dumbbell@FreeBSD.org> | 2016-08-09 19:32:06 +0000 |
|---|---|---|
| committer | Jean-Sébastien Pédron <dumbbell@FreeBSD.org> | 2016-08-09 19:32:06 +0000 |
| commit | bd937497ea2a1111d9cf6ff1cdbe698b3cdd430a (patch) | |
| tree | cd36a4cc1858d305bf7632b49f8862e1ea5067dc /sys/dev/ixl | |
| parent | 8e60fa95cb5d4ee7e70601a9b8542240fb1c2522 (diff) | |
Notes
Diffstat (limited to 'sys/dev/ixl')
| -rw-r--r-- | sys/dev/ixl/i40e_osdep.h | 2 | ||||
| -rw-r--r-- | sys/dev/ixl/ixl.h | 2 | ||||
| -rw-r--r-- | sys/dev/ixl/ixl_pf.h | 2 | ||||
| -rw-r--r-- | sys/dev/ixl/ixlv.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ixl/i40e_osdep.h b/sys/dev/ixl/i40e_osdep.h index 184f125988da..7f9873d94aba 100644 --- a/sys/dev/ixl/i40e_osdep.h +++ b/sys/dev/ixl/i40e_osdep.h @@ -151,7 +151,7 @@ struct i40e_osdep { bus_space_handle_t mem_bus_space_handle; bus_size_t mem_bus_space_size; uint32_t flush_reg; - struct device *dev; + device_t dev; }; struct i40e_dma_mem { diff --git a/sys/dev/ixl/ixl.h b/sys/dev/ixl/ixl.h index bfb708a709f5..1a92edbc15e7 100644 --- a/sys/dev/ixl/ixl.h +++ b/sys/dev/ixl/ixl.h @@ -512,7 +512,7 @@ SLIST_HEAD(ixl_ftl_head, ixl_mac_filter); struct ixl_vsi { void *back; struct ifnet *ifp; - struct device *dev; + device_t dev; struct i40e_hw *hw; struct ifmedia media; enum i40e_vsi_type type; diff --git a/sys/dev/ixl/ixl_pf.h b/sys/dev/ixl/ixl_pf.h index 1c31a9466579..107e30fded5d 100644 --- a/sys/dev/ixl/ixl_pf.h +++ b/sys/dev/ixl/ixl_pf.h @@ -63,7 +63,7 @@ struct ixl_vf { struct ixl_pf { struct i40e_hw hw; struct i40e_osdep osdep; - struct device *dev; + device_t dev; struct ixl_vsi vsi; struct resource *pci_mem; diff --git a/sys/dev/ixl/ixlv.h b/sys/dev/ixl/ixlv.h index be4daeefbc83..888b4e0a2bc7 100644 --- a/sys/dev/ixl/ixlv.h +++ b/sys/dev/ixl/ixlv.h @@ -115,7 +115,7 @@ SLIST_HEAD(vlan_list, ixlv_vlan_filter); struct ixlv_sc { struct i40e_hw hw; struct i40e_osdep osdep; - struct device *dev; + device_t dev; struct resource *pci_mem; struct resource *msix_mem; |
