Update contrib.
1 // Copyright (c) 1996-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\drivers\ethernet.inl
16 // WARNING: This file contains some APIs which are internal and are subject
17 // to change without noticed. Such APIs should therefore not be used
18 // outside the Kernel and Hardware Services package.
26 inline void DEthernet::ReceiveIsr()
27 { iLdd->ReceiveIsr(); }
29 inline TInt DChannelEthernet::DisableIrqs()
30 { return ((DEthernet*)iPdd)->DisableIrqs(); }
32 inline void DChannelEthernet::RestoreIrqs(TInt aIrq)
33 { ((DEthernet*)iPdd)->RestoreIrqs(aIrq); }
35 inline TInt DChannelEthernet::PddStart()
36 { return ((DEthernet*)iPdd)->Start(); }
38 inline TInt DChannelEthernet::ValidateConfig(const TEthernetConfigV01 &aConfig) const
39 { return ((DEthernet*)iPdd)->ValidateConfig(aConfig); }
41 inline void DChannelEthernet::PddConfigure(TEthernetConfigV01 &aConfig)
42 { ((DEthernet*)iPdd)->Configure(aConfig); }
44 inline void DChannelEthernet::MacConfigure(TEthernetConfigV01 &aConfig)
45 { ((DEthernet*)iPdd)->MacConfigure(aConfig); }
47 inline void DChannelEthernet::PddCaps(TDes8 &aCaps) const
48 { ((DEthernet*)iPdd)->Caps(aCaps); }
50 inline void DChannelEthernet::PddCheckConfig(TEthernetConfigV01 &aConfig)
51 { ((DEthernet*)iPdd)->CheckConfig(aConfig); }
53 inline TInt DChannelEthernet::PddSend(TBuf8<KMaxEthernetPacket+32> &aBuffer)
54 { return ((DEthernet*)iPdd)->Send(aBuffer); }
56 inline TInt DChannelEthernet::PddReceive(TBuf8<KMaxEthernetPacket+32> &aBuffer, TBool okToUse)
57 { return ((DEthernet*)iPdd)->ReceiveFrame(aBuffer, okToUse); }