userlibandfileserver/fileserver/shostmassstorage/server/protocol/include/tscsiprimarycmds.inl
changeset 300 1d28c8722707
parent 0 a41df078684a
--- a/userlibandfileserver/fileserver/shostmassstorage/server/protocol/include/tscsiprimarycmds.inl	Wed Oct 20 13:58:28 2010 +0100
+++ b/userlibandfileserver/fileserver/shostmassstorage/server/protocol/include/tscsiprimarycmds.inl	Tue Nov 02 15:29:23 2010 +0000
@@ -1,4 +1,4 @@
-// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+// Copyright (c) 2008-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"
@@ -12,7 +12,7 @@
 //
 // Description:
 // scsiprimarycommands.inl
-// 
+//
 //
 
 /**
@@ -24,7 +24,6 @@
 inline TScsiClientTestUnitReadyReq::TScsiClientTestUnitReadyReq()
 :   TScsiClientReq(ETestUnitReady)
     {
-    __MSFNSLOG
     }
 
 
@@ -33,7 +32,6 @@
 :   TScsiClientReq(ERequestSense),
     iAllocationLength(KResponseLength)
     {
-    __MSFNSLOG
     }
 
 
@@ -44,15 +42,12 @@
 */
 inline void TScsiClientRequestSenseReq::SetAllocationLength(TAllocationLength aAllocationLength)
     {
-    __MSFNSLOG
     iAllocationLength = aAllocationLength;
     }
 
 
 inline TInt TScsiClientRequestSenseReq::EncodeRequestL(TDes8& aBuffer) const
     {
-    __MSFNSLOG
-    __SCSIPRINT(_L("<-- SCSI REQUEST SENSE"));
     TInt length = TScsiClientReq::EncodeRequestL(aBuffer);
 
     aBuffer[4] = iAllocationLength;
@@ -67,7 +62,6 @@
     iEvpd(EFalse),
     iAllocationLength(KResponseLength)
     {
-    __MSFNSLOG
     }
 
 
@@ -78,7 +72,6 @@
 */
 inline void TScsiClientInquiryReq::SetAllocationLength(TAllocationLength aAllocationLength)
     {
-    __MSFNSLOG
     iAllocationLength = aAllocationLength;
     }
 
@@ -90,7 +83,6 @@
 */
 inline void TScsiClientInquiryReq::SetEvpd(TUint8 aPageCode)
     {
-    __MSFNSLOG
     iEvpd = ETrue;
     iPage = aPageCode;
     }
@@ -103,7 +95,6 @@
 */
 inline void TScsiClientInquiryReq::SetCmdDt(TUint8 aOperationCode)
     {
-    __MSFNSLOG
     iCmdDt = ETrue;
     iPage = aOperationCode;
     }
@@ -111,8 +102,6 @@
 
 inline TInt TScsiClientInquiryReq::EncodeRequestL(TDes8& aBuffer) const
     {
-    __MSFNSLOG
-    __SCSIPRINT(_L("<-- SCSI INQUIRY"));
     TInt length = TScsiClientReq::EncodeRequestL(aBuffer);
 
     if (iEvpd)
@@ -151,7 +140,6 @@
 :   TScsiClientReq(EPreventMediaRemoval),
     iPrevent(aPrevent)
     {
-    __MSFNSLOG
     }