diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-12-08 09:17:35 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-12-08 09:17:35 +0000 |
commit | 9924d2811cfd65d87bbd6ed98b2cdcde59f96d5a (patch) | |
tree | 8d2e9dbefdcc22adedf3df7c44427013b0a33a29 /sys/dev/ic/acx100.c | |
parent | 6ec1e59ad26eb6d85f7a1b86387f12d7ac6e4315 (diff) |
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); |