diff options
author | 2006-12-08 09:17:34 +0000 | |
---|---|---|
committer | 2006-12-08 09:17:34 +0000 | |
commit | 85c13c25d71a7d1af08adfd9ce122646254dba3d (patch) | |
tree | 1696972a31018c55dc53b7136670824c3d6d20f6 /sys/dev/ic/acx100.c | |
parent | sync (diff) | |
download | wireguard-openbsd-85c13c25d71a7d1af08adfd9ce122646254dba3d.tar.xz wireguard-openbsd-85c13c25d71a7d1af08adfd9ce122646254dba3d.zip |
First round of evil macro removal. _acx_set_##name##_tmplt bites the dust.
OK mglocker@
Diffstat (limited to 'sys/dev/ic/acx100.c')
-rw-r--r-- | sys/dev/ic/acx100.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/acx100.c b/sys/dev/ic/acx100.c index 32dad387abc..8078cb13919 100644 --- a/sys/dev/ic/acx100.c +++ b/sys/dev/ic/acx100.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acx100.c,v 1.14 2006/11/26 19:46:28 deraadt Exp $ */ +/* $OpenBSD: acx100.c,v 1.15 2006/12/08 09:17:34 claudio Exp $ */ /* * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org> @@ -408,7 +408,7 @@ acx100_init_tmplt(struct acx_softc *sc) bzero(&tim, sizeof(tim)); tim.tim_eid = IEEE80211_ELEMID_TIM; tim.tim_len = ACX_TIM_LEN(ACX_TIM_BITMAP_LEN); - if (_acx_set_tim_tmplt(sc, &tim, + if (acx_set_tmplt(sc, ACXCMD_TMPLT_TIM, &tim, ACX_TMPLT_TIM_SIZ(ACX_TIM_BITMAP_LEN)) != 0) { printf("%s: can't set tim tmplt\n", ifp->if_xname); return (1); |