Date: Tue, 17 May 2011 15:03:40 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r222027 - head/sys/dev/ath/ath_hal/ar5212 Message-ID: <201105171503.p4HF3eOK035920@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201105171503.p4HF3eOK035920>