diff options
author | sam <sam@FreeBSD.org> | 2009-02-11 22:34:22 +0000 |
---|---|---|
committer | sam <sam@FreeBSD.org> | 2009-02-11 22:34:22 +0000 |
commit | a64807419101faff20b3a56c347e849cb9059808 (patch) | |
tree | 7023dedf96f10a01b6cf671c2ebce3112867c8df | |
parent | f1859b93d6bac611f1160ed483c51756acae567a (diff) | |
download | FreeBSD-src-a64807419101faff20b3a56c347e849cb9059808.zip FreeBSD-src-a64807419101faff20b3a56c347e849cb9059808.tar.gz |
fix both instances of name
Pointy hat: sam
-rw-r--r-- | sys/dev/ath/ath_hal/ah_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/ath/ath_hal/ah_internal.h b/sys/dev/ath/ath_hal/ah_internal.h index 821a0aa..4b05e8a 100644 --- a/sys/dev/ath/ath_hal/ah_internal.h +++ b/sys/dev/ath/ath_hal/ah_internal.h @@ -79,7 +79,7 @@ struct ath_hal_chip { }; #ifndef AH_CHIP #define AH_CHIP(_name, _probe, _attach) \ -static struct ath_hal_chip name##_chip = { \ +static struct ath_hal_chip _name##_chip = { \ .name = #_name, \ .probe = _probe, \ .attach = _attach \ |