diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-01-07 04:30:46 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-01-07 04:30:46 +0000 |
commit | b505b273c68319d956f1a073398963e41c5a51ac (patch) | |
tree | 4573d1218347310e5b9ba73bc2dc9914f7ffeebd /sys/dev/pci/if_em.h | |
parent | 2b353dd59306d8f2b67904368fa6dbb36ea55d36 (diff) |
rename the struct arpcom interface_data in em_softc to sc_ac.
makes it more consistent with the rest of the tree.
Diffstat (limited to 'sys/dev/pci/if_em.h')
-rw-r--r-- | sys/dev/pci/if_em.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_em.h b/sys/dev/pci/if_em.h index 1761affe25a..9d1f267ec70 100644 --- a/sys/dev/pci/if_em.h +++ b/sys/dev/pci/if_em.h @@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE. ***************************************************************************/ /* $FreeBSD: if_em.h,v 1.26 2004/09/01 23:22:41 pdeuskar Exp $ */ -/* $OpenBSD: if_em.h,v 1.63 2016/01/07 04:21:36 dlg Exp $ */ +/* $OpenBSD: if_em.h,v 1.64 2016/01/07 04:30:45 dlg Exp $ */ #ifndef _EM_H_DEFINED_ #define _EM_H_DEFINED_ @@ -311,7 +311,7 @@ typedef struct _DESCRIPTOR_PAIR /* Our adapter structure */ struct em_softc { struct device sc_dev; - struct arpcom interface_data; + struct arpcom sc_ac; struct em_hw hw; /* OpenBSD operating-system-specific structures */ |