diff options
| author | Bosko Milekic <bmilekic@FreeBSD.org> | 2003-02-21 23:12:32 +0000 |
|---|---|---|
| committer | Bosko Milekic <bmilekic@FreeBSD.org> | 2003-02-21 23:12:32 +0000 |
| commit | acc769b2ec6dbefb28c9174406751d48544f2540 (patch) | |
| tree | 9eb8e4ad774f38d57085818f76b105e47941b913 /sys/dev/tx | |
| parent | dba36bb91294d806e7441af5032e81465a134f86 (diff) | |
Notes
Diffstat (limited to 'sys/dev/tx')
| -rw-r--r-- | sys/dev/tx/if_txvar.h | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/sys/dev/tx/if_txvar.h b/sys/dev/tx/if_txvar.h index 16dc36d9f5b7..101b9e8461a0 100644 --- a/sys/dev/tx/if_txvar.h +++ b/sys/dev/tx/if_txvar.h @@ -131,16 +131,3 @@ struct epic_type { epic_read_phy_reg((sc), (phy), (reg)) #define PHY_WRITE_2(sc, phy, reg, val) \ epic_write_phy_reg((sc), (phy), (reg), (val)) - -/* Macro to get either mbuf cluster or nothing */ -#define EPIC_MGETCLUSTER(m) \ - { MGETHDR((m),M_DONTWAIT,MT_DATA); \ - if (m) { \ - MCLGET((m),M_DONTWAIT); \ - if( 0 == ((m)->m_flags & M_EXT) ) { \ - m_freem(m); \ - (m) = NULL; \ - } \ - } \ - } - |
