wlan_bearer/wlanldd/wlan_common/umac_common/inc/802dot11.h
changeset 17 41a8eba36f74
parent 0 c40eb8fe8501
--- a/wlan_bearer/wlanldd/wlan_common/umac_common/inc/802dot11.h	Fri Apr 16 16:56:12 2010 +0300
+++ b/wlan_bearer/wlanldd/wlan_common/umac_common/inc/802dot11.h	Mon May 03 14:14:02 2010 +0300
@@ -1,5 +1,5 @@
 /*
-* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
+* Copyright (c) 2005-2010 Nokia Corporation and/or its subsidiary(-ies).
 * All rights reserved.
 * This component and the accompanying materials are made available
 * under the terms of the License "Eclipse Public License v1.0"
@@ -17,7 +17,7 @@
 */
 
 /*
-* %version: 44 %
+* %version: 45 %
 */
 
 #ifndef WLAN802DOT11_H
@@ -1659,7 +1659,6 @@
         EStbcRxMask             = 0x0300,
         EDelayedBlockAckMask    = 0x0400,
         EDsssCckIn40MhzMask     = 0x1000,
-        EPsmpMask               = 0x2000,
         ELsigTxopProtectionMask = 0x8000
         };    
 
@@ -1862,18 +1861,6 @@
     inline void SetDsssCckIn40Mhz( TBool aValue );
 
     /**
-    * Evaluates if PSMP operation is supported
-    * @return ETrue if supported, EFalse otherwise
-    */
-    inline TBool Psmp() const;
-
-    /**
-    * Sets support for PSMP operation
-    * @param aValue ETrue if supported, EFalse otherwise
-    */
-    inline void SetPsmp( TBool aValue );
-
-    /**
     * Evaluates if L-SIG TXOP protection is supported
     * @return ETrue if supported, EFalse otherwise
     */
@@ -2315,37 +2302,6 @@
 // 
 // ---------------------------------------------------------------------------
 //
-inline TBool SHtCapabilitiesIeData::Psmp() const
-    {
-    return ( ( ReadUint16Toh( &iCapabilitiesInfo ) & EPsmpMask )
-             ? ETrue : EFalse );
-    }
-
-// ---------------------------------------------------------------------------
-// 
-// ---------------------------------------------------------------------------
-//
-inline void SHtCapabilitiesIeData::SetPsmp( TBool aValue )
-    {
-    if ( aValue )
-        {
-        WriteHtoUint16( &iCapabilitiesInfo, 
-            ReadUint16Toh( &iCapabilitiesInfo ) | 
-            EPsmpMask );
-        }
-    else
-        {
-        const TUint16 temp ( ReadUint16Toh( &iCapabilitiesInfo ) );
-        WriteHtoUint16( 
-            &iCapabilitiesInfo, 
-            temp & ( ~EPsmpMask ) );        
-        }
-    }
-
-// ---------------------------------------------------------------------------
-// 
-// ---------------------------------------------------------------------------
-//
 inline TBool SHtCapabilitiesIeData::LsigTxopProtection() const
     {
     return ( ( ReadUint16Toh( &iCapabilitiesInfo ) & ELsigTxopProtectionMask )