diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-08-02 12:55:12 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-08-02 12:55:12 +0000 |
commit | 29064c36d3fd1441d00dee51b3d8a79a1f2b2dba (patch) | |
tree | 6acd899d940715bd18ca8165416714d650862a5e /sys/dev/ic/ar5xxx.h | |
parent | 45ff676fd3c75a31c79628ed33119c90a3384ac0 (diff) |
reduce stack usage
spotted out by jsg@
Diffstat (limited to 'sys/dev/ic/ar5xxx.h')
-rw-r--r-- | sys/dev/ic/ar5xxx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ar5xxx.h b/sys/dev/ic/ar5xxx.h index 3b58175477b..cf5c663bf9f 100644 --- a/sys/dev/ic/ar5xxx.h +++ b/sys/dev/ic/ar5xxx.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ar5xxx.h,v 1.23 2005/07/30 17:13:17 reyk Exp $ */ +/* $OpenBSD: ar5xxx.h,v 1.24 2005/08/02 12:55:11 reyk Exp $ */ /* * Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net> @@ -1825,7 +1825,7 @@ u_int16_t ar5k_get_regdomain(struct ath_hal *); u_int32_t ar5k_bitswap(u_int32_t, u_int); u_int ar5k_clocktoh(u_int, HAL_BOOL); u_int ar5k_htoclock(u_int, HAL_BOOL); -void ar5k_rt_copy(HAL_RATE_TABLE *, HAL_RATE_TABLE *); +void ar5k_rt_copy(HAL_RATE_TABLE *, const HAL_RATE_TABLE *); HAL_BOOL ar5k_register_timeout(struct ath_hal *, u_int32_t, u_int32_t, u_int32_t, HAL_BOOL); |