Author: adrian
Date: Tue May 17 15:03:39 2011
New Revision: 222027
URL: http://svn.freebsd.org/changeset/base/222027
Log:
Fix case, introduced in my previous commit.
Pointy hat goes to: adrian, for having multiple build screens
open and checking the wrong one.
Modified:
head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c
Modified: head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c
==============================================================================
--- head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c Tue May 17 14:50:23
2011 (r222026)
+++ head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c Tue May 17 15:03:39
2011 (r222027)
@@ -857,7 +857,7 @@ ar5212GetCapability(struct ath_hal *ah,
case HAL_CAP_MCAST_KEYSRCH: /* multicast frame keycache search */
switch (capability) {
case 0: /* hardware capability */
- return pcap->halMcastKeySrchSupport ? HAL_OK :
HAL_ENXIO;
+ return pCap->halMcastKeySrchSupport ? HAL_OK :
HAL_ENXIO;
case 1:
return (ahp->ah_staId1Defaults &
AR_STA_ID1_MCAST_KSRCH) ? HAL_OK : HAL_ENXIO;
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"