aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/patm
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2015-01-05 09:58:32 +0000
committerRobert Watson <rwatson@FreeBSD.org>2015-01-05 09:58:32 +0000
commited6a66ca6c2065bc1fed93e00805676a5d3b981e (patch)
tree6f98bf414ddd5e9772757ca1f6016f218ead95f8 /sys/dev/patm
parentcd470fead8828603c75aaa68a28a90df541c13c2 (diff)
Notes
Diffstat (limited to 'sys/dev/patm')
-rw-r--r--sys/dev/patm/if_patm_rx.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/patm/if_patm_rx.c b/sys/dev/patm/if_patm_rx.c
index 3df4d6a29b8d..c4822983c6a4 100644
--- a/sys/dev/patm/if_patm_rx.c
+++ b/sys/dev/patm/if_patm_rx.c
@@ -471,7 +471,7 @@ patm_rx_raw(struct patm_softc *sc, u_char *cell)
default:
case PATM_RAW_CELL:
m->m_len = m->m_pkthdr.len = 53;
- MH_ALIGN(m, 53);
+ M_ALIGN(m, 53);
dst = mtod(m, u_char *);
*dst++ = *cell++;
*dst++ = *cell++;
@@ -483,7 +483,7 @@ patm_rx_raw(struct patm_softc *sc, u_char *cell)
case PATM_RAW_NOHEC:
m->m_len = m->m_pkthdr.len = 52;
- MH_ALIGN(m, 52);
+ M_ALIGN(m, 52);
dst = mtod(m, u_char *);
*dst++ = *cell++;
*dst++ = *cell++;
@@ -494,7 +494,7 @@ patm_rx_raw(struct patm_softc *sc, u_char *cell)
case PATM_RAW_CS:
m->m_len = m->m_pkthdr.len = 64;
- MH_ALIGN(m, 64);
+ M_ALIGN(m, 64);
dst = mtod(m, u_char *);
*dst++ = *cell++;
*dst++ = *cell++;