···66666767 2006/06/08 d.k.: start of the implementation, version 1.0068686969-7069****************************************************************************/71707271#ifndef _EPL_DLLK_H_···7879// const defines7980//---------------------------------------------------------------------------80818181-8282//---------------------------------------------------------------------------8383// typedef8484//---------------------------------------------------------------------------85858686-typedef tEplKernel (* tEplDllkCbAsync) (tEplFrameInfo * pFrameInfo_p);8686+typedef tEplKernel(*tEplDllkCbAsync) (tEplFrameInfo * pFrameInfo_p);87878888-typedef struct8989-{9090- BYTE m_be_abSrcMac[6];8888+typedef struct {8989+ BYTE m_be_abSrcMac[6];91909291} tEplDllkInitParam;93929493// forward declaration9594struct _tEdrvTxBuffer;96959797-struct _tEplDllkNodeInfo9898-{9999- struct _tEplDllkNodeInfo* m_pNextNodeInfo;100100- struct _tEdrvTxBuffer* m_pPreqTxBuffer;101101- unsigned int m_uiNodeId;102102- DWORD m_dwPresTimeout;103103- unsigned long m_ulDllErrorEvents;104104- tEplNmtState m_NmtState;105105- WORD m_wPresPayloadLimit;106106- BYTE m_be_abMacAddr[6];107107- BYTE m_bSoaFlag1;108108- BOOL m_fSoftDelete; // delete node after error and ignore error9696+struct _tEplDllkNodeInfo {9797+ struct _tEplDllkNodeInfo *m_pNextNodeInfo;9898+ struct _tEdrvTxBuffer *m_pPreqTxBuffer;9999+ unsigned int m_uiNodeId;100100+ DWORD m_dwPresTimeout;101101+ unsigned long m_ulDllErrorEvents;102102+ tEplNmtState m_NmtState;103103+ WORD m_wPresPayloadLimit;104104+ BYTE m_be_abMacAddr[6];105105+ BYTE m_bSoaFlag1;106106+ BOOL m_fSoftDelete; // delete node after error and ignore error109107110108};111109···134138tEplKernel EplDllkDeregAsyncHandler(tEplDllkCbAsync pfnDllkCbAsync_p);135139136140// register C_DLL_MULTICAST_ASND in ethernet driver if any AsndServiceId is registered137137-tEplKernel EplDllkSetAsndServiceIdFilter(tEplDllAsndServiceId ServiceId_p, tEplDllAsndFilter Filter_p);141141+tEplKernel EplDllkSetAsndServiceIdFilter(tEplDllAsndServiceId ServiceId_p,142142+ tEplDllAsndFilter Filter_p);138143139144// creates the buffer for a Tx frame and registers it to the ethernet driver140140-tEplKernel EplDllkCreateTxFrame(unsigned int * puiHandle_p,141141- tEplFrame ** ppFrame_p,142142- unsigned int * puiFrameSize_p,143143- tEplMsgType MsgType_p,144144- tEplDllAsndServiceId ServiceId_p);145145+tEplKernel EplDllkCreateTxFrame(unsigned int *puiHandle_p,146146+ tEplFrame ** ppFrame_p,147147+ unsigned int *puiFrameSize_p,148148+ tEplMsgType MsgType_p,149149+ tEplDllAsndServiceId ServiceId_p);145150146151tEplKernel EplDllkDeleteTxFrame(unsigned int uiHandle_p);147147-148152149153#if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMT_MN)) != 0)150154···156160157161tEplKernel EplDllkSetFlag1OfNode(unsigned int uiNodeId_p, BYTE bSoaFlag1_p);158162159159-tEplKernel EplDllkGetFirstNodeInfo(tEplDllkNodeInfo** ppNodeInfo_p);163163+tEplKernel EplDllkGetFirstNodeInfo(tEplDllkNodeInfo ** ppNodeInfo_p);160164161165#endif //(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMT_MN)) != 0)162166163167#endif // #if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_DLLK)) != 0)164168165165-#endif // #ifndef _EPL_DLLK_H_166166-167167-169169+#endif // #ifndef _EPL_DLLK_H_
+23-18
drivers/staging/epl/kernel/EplDllkCal.h
···66666767 2006/06/13 d.k.: start of the implementation, version 1.0068686969-7069****************************************************************************/71707271#ifndef _EPL_DLLKCAL_H_···8283// typedef8384//---------------------------------------------------------------------------84858585-typedef struct8686-{8787- unsigned long m_ulCurTxFrameCountGen;8888- unsigned long m_ulCurTxFrameCountNmt;8989- unsigned long m_ulCurRxFrameCount;9090- unsigned long m_ulMaxTxFrameCountGen;9191- unsigned long m_ulMaxTxFrameCountNmt;9292- unsigned long m_ulMaxRxFrameCount;8686+typedef struct {8787+ unsigned long m_ulCurTxFrameCountGen;8888+ unsigned long m_ulCurTxFrameCountNmt;8989+ unsigned long m_ulCurRxFrameCount;9090+ unsigned long m_ulMaxTxFrameCountGen;9191+ unsigned long m_ulMaxTxFrameCountNmt;9292+ unsigned long m_ulMaxRxFrameCount;93939494} tEplDllkCalStatistics;9595···102104103105tEplKernel EplDllkCalDelInstance(void);104106105105-tEplKernel EplDllkCalAsyncGetTxCount(tEplDllAsyncReqPriority * pPriority_p, unsigned int * puiCount_p);106106-tEplKernel EplDllkCalAsyncGetTxFrame(void * pFrame_p, unsigned int * puiFrameSize_p, tEplDllAsyncReqPriority Priority_p);107107+tEplKernel EplDllkCalAsyncGetTxCount(tEplDllAsyncReqPriority * pPriority_p,108108+ unsigned int *puiCount_p);109109+tEplKernel EplDllkCalAsyncGetTxFrame(void *pFrame_p,110110+ unsigned int *puiFrameSize_p,111111+ tEplDllAsyncReqPriority Priority_p);107112// only frames with registered AsndServiceIds are passed to CAL108113tEplKernel EplDllkCalAsyncFrameReceived(tEplFrameInfo * pFrameInfo_p);109114110110-tEplKernel EplDllkCalAsyncSend(tEplFrameInfo * pFrameInfo_p, tEplDllAsyncReqPriority Priority_p);115115+tEplKernel EplDllkCalAsyncSend(tEplFrameInfo * pFrameInfo_p,116116+ tEplDllAsyncReqPriority Priority_p);111117112118tEplKernel EplDllkCalAsyncClearBuffer(void);113119···123121124122tEplKernel EplDllkCalAsyncClearQueues(void);125123126126-tEplKernel EplDllkCalIssueRequest(tEplDllReqServiceId Service_p, unsigned int uiNodeId_p, BYTE bSoaFlag1_p);124124+tEplKernel EplDllkCalIssueRequest(tEplDllReqServiceId Service_p,125125+ unsigned int uiNodeId_p, BYTE bSoaFlag1_p);127126128128-tEplKernel EplDllkCalAsyncGetSoaRequest(tEplDllReqServiceId* pReqServiceId_p, unsigned int* puiNodeId_p);127127+tEplKernel EplDllkCalAsyncGetSoaRequest(tEplDllReqServiceId * pReqServiceId_p,128128+ unsigned int *puiNodeId_p);129129130130-tEplKernel EplDllkCalAsyncSetPendingRequests(unsigned int uiNodeId_p, tEplDllAsyncReqPriority AsyncReqPrio_p, unsigned int uiCount_p);130130+tEplKernel EplDllkCalAsyncSetPendingRequests(unsigned int uiNodeId_p,131131+ tEplDllAsyncReqPriority132132+ AsyncReqPrio_p,133133+ unsigned int uiCount_p);131134132135#endif //(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMT_MN)) != 0)133136134137#endif // #if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_DLLK)) != 0)135138136136-#endif // #ifndef _EPL_DLLKCAL_H_137137-138138-139139+#endif // #ifndef _EPL_DLLKCAL_H_
+1-5
drivers/staging/epl/kernel/EplErrorHandlerk.h
···66666767 2006/10/02 d.k.: start of the implementation, version 1.0068686969-7069****************************************************************************/71707271#ifndef _EPL_ERRORHANDLERK_H_···9798// processes error events9899tEplKernel PUBLIC EplErrorHandlerkProcess(tEplEvent * pEvent_p);99100100100-101101-#endif // #ifndef _EPL_ERRORHANDLERK_H_102102-103103-101101+#endif // #ifndef _EPL_ERRORHANDLERK_H_
+3-9
drivers/staging/epl/kernel/EplEventk.h
···66666767 2006/06/12 d.k.: start of the implementation, version 1.0068686969-7069****************************************************************************/71707271#ifndef _EPL_EVENTK_H_···102103103104// post errorevents from kernelspace104105tEplKernel PUBLIC EplEventkPostError(tEplEventSource EventSource_p,105105- tEplKernel EplError_p,106106- unsigned int uiArgSize_p,107107- void* pArg_p);106106+ tEplKernel EplError_p,107107+ unsigned int uiArgSize_p, void *pArg_p);108108109109-110110-111111-#endif // #ifndef _EPL_EVENTK_H_112112-113113-109109+#endif // #ifndef _EPL_EVENTK_H_
+8-13
drivers/staging/epl/kernel/EplNmtk.h
···66666767 2006/06/09 k.t.: start of the implementation68686969-7069****************************************************************************/71707271#ifndef _EPLNMTK_H_···7475#include "../EplNmt.h"7576#include "EplEventk.h"76777777-7878//---------------------------------------------------------------------------7979// const defines8080//---------------------------------------------------------------------------81818282-8382//---------------------------------------------------------------------------8483// typedef8584//---------------------------------------------------------------------------8686-87858886//---------------------------------------------------------------------------8987// function prototypes···8892#if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMTK)) != 0)8993EPLDLLEXPORT tEplKernel PUBLIC EplNmtkInit(EPL_MCO_DECL_PTR_INSTANCE_PTR);90949191-EPLDLLEXPORT tEplKernel PUBLIC EplNmtkAddInstance(EPL_MCO_DECL_PTR_INSTANCE_PTR);9595+EPLDLLEXPORT tEplKernel PUBLIC9696+EplNmtkAddInstance(EPL_MCO_DECL_PTR_INSTANCE_PTR);92979393-EPLDLLEXPORT tEplKernel PUBLIC EplNmtkDelInstance(EPL_MCO_DECL_PTR_INSTANCE_PTR);9898+EPLDLLEXPORT tEplKernel PUBLIC9999+EplNmtkDelInstance(EPL_MCO_DECL_PTR_INSTANCE_PTR);9410095101EPLDLLEXPORT tEplKernel PUBLIC EplNmtkProcess(EPL_MCO_DECL_PTR_INSTANCE_PTR_9696- tEplEvent * pEvent_p);102102+ tEplEvent * pEvent_p);971039898-EPLDLLEXPORT tEplNmtState PUBLIC EplNmtkGetNmtState(EPL_MCO_DECL_PTR_INSTANCE_PTR);104104+EPLDLLEXPORT tEplNmtState PUBLIC105105+EplNmtkGetNmtState(EPL_MCO_DECL_PTR_INSTANCE_PTR);99106100107#endif // #if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_NMTK)) != 0)101108102102-103103-104104-#endif // #ifndef _EPLNMTK_H_105105-106106-109109+#endif // #ifndef _EPLNMTK_H_
+1-8
drivers/staging/epl/kernel/EplNmtkCal.h
···67676868 2006/06/16 -k.t.: start of the implementation69697070-7170****************************************************************************/72717372#include "EplNmtk.h"···7475#ifndef _EPLNMTKCAL_H_7576#define _EPLNMTKCAL_H_76777777-7878//---------------------------------------------------------------------------7979// const defines8080//---------------------------------------------------------------------------8181-82818382//---------------------------------------------------------------------------8483// typedef8584//---------------------------------------------------------------------------86858787-8886//---------------------------------------------------------------------------8987// function prototypes9088//---------------------------------------------------------------------------91899292-9393-#endif // #ifndef _EPLNMTKCAL_H_9494-9595-9090+#endif // #ifndef _EPLNMTKCAL_H_
+60-60
drivers/staging/epl/kernel/EplObdk.h
···66666767 2006/06/19 k.t.: start of the implementation68686969-7069****************************************************************************/71707271#include "../EplObd.h"···7374#ifndef _EPLOBDK_H_7475#define _EPLOBDK_H_75767676-7777//---------------------------------------------------------------------------7878// const defines7979//---------------------------------------------------------------------------8080-81808281//---------------------------------------------------------------------------8382// typedef···9295//---------------------------------------------------------------------------9396#if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_OBDK)) != 0)9497// ---------------------------------------------------------------------9595-EPLDLLEXPORT tEplKernel PUBLIC EplObdInit (EPL_MCO_DECL_PTR_INSTANCE_PTR_9696- tEplObdInitParam MEM* pInitParam_p);9898+EPLDLLEXPORT tEplKernel PUBLIC EplObdInit(EPL_MCO_DECL_PTR_INSTANCE_PTR_9999+ tEplObdInitParam MEM * pInitParam_p);9710098101// ---------------------------------------------------------------------9999-EPLDLLEXPORT tEplKernel PUBLIC EplObdAddInstance (EPL_MCO_DECL_PTR_INSTANCE_PTR_100100- tEplObdInitParam MEM* pInitParam_p);102102+EPLDLLEXPORT tEplKernel PUBLIC EplObdAddInstance(EPL_MCO_DECL_PTR_INSTANCE_PTR_103103+ tEplObdInitParam MEM *104104+ pInitParam_p);101105102106// ---------------------------------------------------------------------103103-EPLDLLEXPORT tEplKernel PUBLIC EplObdDeleteInstance (EPL_MCO_DECL_INSTANCE_PTR);107107+EPLDLLEXPORT tEplKernel PUBLIC EplObdDeleteInstance(EPL_MCO_DECL_INSTANCE_PTR);104108105109// ---------------------------------------------------------------------106106-EPLDLLEXPORT tEplKernel PUBLIC EplObdWriteEntry (EPL_MCO_DECL_INSTANCE_PTR_107107- unsigned int uiIndex_p,108108- unsigned int uiSubIndex_p,109109- void * pSrcData_p,110110- tEplObdSize Size_p);110110+EPLDLLEXPORT tEplKernel PUBLIC EplObdWriteEntry(EPL_MCO_DECL_INSTANCE_PTR_111111+ unsigned int uiIndex_p,112112+ unsigned int uiSubIndex_p,113113+ void *pSrcData_p,114114+ tEplObdSize Size_p);111115112116// ---------------------------------------------------------------------113113-EPLDLLEXPORT tEplKernel PUBLIC EplObdReadEntry (EPL_MCO_DECL_INSTANCE_PTR_114114- unsigned int uiIndex_p,115115- unsigned int uiSubIndex_p,116116- void * pDstData_p,117117- tEplObdSize *pSize_p);117117+EPLDLLEXPORT tEplKernel PUBLIC EplObdReadEntry(EPL_MCO_DECL_INSTANCE_PTR_118118+ unsigned int uiIndex_p,119119+ unsigned int uiSubIndex_p,120120+ void *pDstData_p,121121+ tEplObdSize * pSize_p);118122119123// ---------------------------------------------------------------------120120-EPLDLLEXPORT tEplKernel PUBLIC EplObdSetStoreLoadObjCallback (EPL_MCO_DECL_INSTANCE_PTR_121121- tEplObdStoreLoadObjCallback fpCallback_p);124124+EPLDLLEXPORT tEplKernel PUBLIC125125+EplObdSetStoreLoadObjCallback(EPL_MCO_DECL_INSTANCE_PTR_126126+ tEplObdStoreLoadObjCallback fpCallback_p);122127123128// ---------------------------------------------------------------------124124-EPLDLLEXPORT tEplKernel PUBLIC EplObdAccessOdPart (EPL_MCO_DECL_INSTANCE_PTR_125125- tEplObdPart ObdPart_p,126126- tEplObdDir Direction_p);129129+EPLDLLEXPORT tEplKernel PUBLIC EplObdAccessOdPart(EPL_MCO_DECL_INSTANCE_PTR_130130+ tEplObdPart ObdPart_p,131131+ tEplObdDir Direction_p);127132128133// ---------------------------------------------------------------------129129-EPLDLLEXPORT tEplKernel PUBLIC EplObdDefineVar (EPL_MCO_DECL_INSTANCE_PTR_130130- tEplVarParam MEM* pVarParam_p);134134+EPLDLLEXPORT tEplKernel PUBLIC EplObdDefineVar(EPL_MCO_DECL_INSTANCE_PTR_135135+ tEplVarParam MEM * pVarParam_p);131136132137// ---------------------------------------------------------------------133133-EPLDLLEXPORT void* PUBLIC EplObdGetObjectDataPtr (EPL_MCO_DECL_INSTANCE_PTR_134134- unsigned int uiIndex_p,135135- unsigned int uiSubIndex_p);138138+EPLDLLEXPORT void *PUBLIC EplObdGetObjectDataPtr(EPL_MCO_DECL_INSTANCE_PTR_139139+ unsigned int uiIndex_p,140140+ unsigned int uiSubIndex_p);136141// ---------------------------------------------------------------------137137-EPLDLLEXPORT tEplKernel PUBLIC EplObdRegisterUserOd (EPL_MCO_DECL_INSTANCE_PTR_138138- tEplObdEntryPtr pUserOd_p);142142+EPLDLLEXPORT tEplKernel PUBLIC EplObdRegisterUserOd(EPL_MCO_DECL_INSTANCE_PTR_143143+ tEplObdEntryPtr pUserOd_p);139144140145// ---------------------------------------------------------------------141141-EPLDLLEXPORT void PUBLIC EplObdInitVarEntry (EPL_MCO_DECL_INSTANCE_PTR_142142- tEplObdVarEntry MEM* pVarEntry_p,143143- tEplObdType Type_p, tEplObdSize ObdSize_p);146146+EPLDLLEXPORT void PUBLIC EplObdInitVarEntry(EPL_MCO_DECL_INSTANCE_PTR_147147+ tEplObdVarEntry MEM * pVarEntry_p,148148+ tEplObdType Type_p,149149+ tEplObdSize ObdSize_p);144150145151// ---------------------------------------------------------------------146152EPLDLLEXPORT tEplObdSize PUBLIC EplObdGetDataSize(EPL_MCO_DECL_INSTANCE_PTR_147147- unsigned int uiIndex_p,148148- unsigned int uiSubIndex_p);153153+ unsigned int uiIndex_p,154154+ unsigned int uiSubIndex_p);149155150156// ---------------------------------------------------------------------151157EPLDLLEXPORT unsigned int PUBLIC EplObdGetNodeId(EPL_MCO_DECL_INSTANCE_PTR);152158153159// ---------------------------------------------------------------------154160EPLDLLEXPORT tEplKernel PUBLIC EplObdSetNodeId(EPL_MCO_DECL_INSTANCE_PTR_155155- unsigned int uiNodeId_p,156156- tEplObdNodeIdType NodeIdType_p);161161+ unsigned int uiNodeId_p,162162+ tEplObdNodeIdType NodeIdType_p);157163158164// ---------------------------------------------------------------------159165EPLDLLEXPORT tEplKernel PUBLIC EplObdIsNumerical(EPL_MCO_DECL_INSTANCE_PTR_160160- unsigned int uiIndex_p,161161- unsigned int uiSubIndex_p,162162- BOOL* pfEntryNumerical);166166+ unsigned int uiIndex_p,167167+ unsigned int uiSubIndex_p,168168+ BOOL * pfEntryNumerical);163169// ---------------------------------------------------------------------164164-EPLDLLEXPORT tEplKernel PUBLIC EplObdWriteEntryFromLe (EPL_MCO_DECL_INSTANCE_PTR_165165- unsigned int uiIndex_p,166166- unsigned int uiSubIndex_p,167167- void * pSrcData_p,168168- tEplObdSize Size_p);170170+EPLDLLEXPORT tEplKernel PUBLIC EplObdWriteEntryFromLe(EPL_MCO_DECL_INSTANCE_PTR_171171+ unsigned int uiIndex_p,172172+ unsigned int uiSubIndex_p,173173+ void *pSrcData_p,174174+ tEplObdSize Size_p);169175170176// ---------------------------------------------------------------------171171-EPLDLLEXPORT tEplKernel PUBLIC EplObdReadEntryToLe (EPL_MCO_DECL_INSTANCE_PTR_172172- unsigned int uiIndex_p,173173- unsigned int uiSubIndex_p,174174- void * pDstData_p,175175- tEplObdSize *pSize_p);177177+EPLDLLEXPORT tEplKernel PUBLIC EplObdReadEntryToLe(EPL_MCO_DECL_INSTANCE_PTR_178178+ unsigned int uiIndex_p,179179+ unsigned int uiSubIndex_p,180180+ void *pDstData_p,181181+ tEplObdSize * pSize_p);176182177183// ---------------------------------------------------------------------178184EPLDLLEXPORT tEplKernel PUBLIC EplObdGetAccessType(EPL_MCO_DECL_INSTANCE_PTR_179179- unsigned int uiIndex_p,180180- unsigned int uiSubIndex_p,181181- tEplObdAccess* pAccessTyp_p);185185+ unsigned int uiIndex_p,186186+ unsigned int uiSubIndex_p,187187+ tEplObdAccess *188188+ pAccessTyp_p);182189183190// ---------------------------------------------------------------------184184-EPLDLLEXPORT tEplKernel PUBLIC EplObdSearchVarEntry (EPL_MCO_DECL_INSTANCE_PTR_185185- unsigned int uiIndex_p,186186- unsigned int uiSubindex_p,187187- tEplObdVarEntry MEM** ppVarEntry_p);191191+EPLDLLEXPORT tEplKernel PUBLIC EplObdSearchVarEntry(EPL_MCO_DECL_INSTANCE_PTR_192192+ unsigned int uiIndex_p,193193+ unsigned int uiSubindex_p,194194+ tEplObdVarEntry MEM **195195+ ppVarEntry_p);188196189197#endif // end of #if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_OBDK)) != 0)190198191191-#endif // #ifndef _EPLOBDK_H_192192-193193-199199+#endif // #ifndef _EPLOBDK_H_
+1-8
drivers/staging/epl/kernel/EplObdkCal.h
···67676868 2006/06/19 k.t.: start of the implementation69697070-7170****************************************************************************/72717372#include "../EplObd.h"···7475#ifndef _EPLOBDKCAL_H_7576#define _EPLOBDKCAL_H_76777777-7878//---------------------------------------------------------------------------7979// const defines8080//---------------------------------------------------------------------------8181-82818382//---------------------------------------------------------------------------8483// typedef8584//---------------------------------------------------------------------------86858787-8886//---------------------------------------------------------------------------8987// function prototypes9088//---------------------------------------------------------------------------91899292-9393-#endif // #ifndef _EPLOBDKCAL_H_9494-9595-9090+#endif // #ifndef _EPLOBDKCAL_H_
+1-7
drivers/staging/epl/kernel/EplPdok.h
···66666767 2006/05/22 d.k.: start of the implementation, version 1.0068686969-7069****************************************************************************/71707271#ifndef _EPL_PDOK_H_···7980// const defines8081//---------------------------------------------------------------------------81828282-8383//---------------------------------------------------------------------------8484// typedef8585//---------------------------------------------------------------------------8686-87868887//---------------------------------------------------------------------------8988// function prototypes···107110108111tEplKernel EplPdokDelInstance(void);109112110110-111111-#endif // #ifndef _EPL_PDOK_H_112112-113113-113113+#endif // #ifndef _EPL_PDOK_H_
+1-8
drivers/staging/epl/kernel/EplPdokCal.h
···66666767 2006/06/26 d.k.: start of the implementation, version 1.0068686969-7069****************************************************************************/71707271#ifndef _EPL_PDOKCAL_H_···7879// const defines7980//---------------------------------------------------------------------------80818181-8282//---------------------------------------------------------------------------8383// typedef8484//---------------------------------------------------------------------------8585-86858786//---------------------------------------------------------------------------8887// function prototypes···9699// gets flag for validity of TPDOs from shared memory97100tEplKernel EplPdokCalAreTpdosValid(BOOL * pfValid_p);981019999-100100-101101-#endif // #ifndef _EPL_PDOKCAL_H_102102-103103-102102+#endif // #ifndef _EPL_PDOKCAL_H_
+13-16
drivers/staging/epl/kernel/EplTimerHighResk.h
···66666767 2006/09/29 d.k.: start of the implementation68686969-7069****************************************************************************/71707271#include "../EplTimer.h"···8182// typedef8283//---------------------------------------------------------------------------83848484-8585//---------------------------------------------------------------------------8686// function prototypes8787//---------------------------------------------------------------------------···91939294tEplKernel PUBLIC EplTimerHighReskDelInstance(void);93959494-tEplKernel PUBLIC EplTimerHighReskSetTimerNs(tEplTimerHdl* pTimerHdl_p,9595- unsigned long long ullTimeNs_p,9696- tEplTimerkCallback pfnCallback_p,9797- unsigned long ulArgument_p,9898- BOOL fContinuously_p);9696+tEplKernel PUBLIC EplTimerHighReskSetTimerNs(tEplTimerHdl * pTimerHdl_p,9797+ unsigned long long ullTimeNs_p,9898+ tEplTimerkCallback pfnCallback_p,9999+ unsigned long ulArgument_p,100100+ BOOL fContinuously_p);99101100100-tEplKernel PUBLIC EplTimerHighReskModifyTimerNs(tEplTimerHdl* pTimerHdl_p,101101- unsigned long long ullTimeNs_p,102102- tEplTimerkCallback pfnCallback_p,103103- unsigned long ulArgument_p,104104- BOOL fContinuously_p);102102+tEplKernel PUBLIC EplTimerHighReskModifyTimerNs(tEplTimerHdl * pTimerHdl_p,103103+ unsigned long long ullTimeNs_p,104104+ tEplTimerkCallback105105+ pfnCallback_p,106106+ unsigned long ulArgument_p,107107+ BOOL fContinuously_p);105108106106-tEplKernel PUBLIC EplTimerHighReskDeleteTimer(tEplTimerHdl* pTimerHdl_p);109109+tEplKernel PUBLIC EplTimerHighReskDeleteTimer(tEplTimerHdl * pTimerHdl_p);107110108108-#endif // #ifndef _EPLTIMERHIGHRESK_H_109109-110110-111111+#endif // #ifndef _EPLTIMERHIGHRESK_H_
+8-12
drivers/staging/epl/kernel/EplTimerk.h
···66666767 2006/07/06 k.t.: start of the implementation68686969-7069****************************************************************************/71707271#include "../EplTimer.h"···9596// typedef9697//---------------------------------------------------------------------------97989898-9999//---------------------------------------------------------------------------100100// function prototypes101101//---------------------------------------------------------------------------···105107106108tEplKernel PUBLIC EplTimerkDelInstance(void);107109108108-tEplKernel PUBLIC EplTimerkSetTimerMs(tEplTimerHdl* pTimerHdl_p,109109- unsigned long ulTime_p,110110- tEplTimerArg Argument_p);110110+tEplKernel PUBLIC EplTimerkSetTimerMs(tEplTimerHdl * pTimerHdl_p,111111+ unsigned long ulTime_p,112112+ tEplTimerArg Argument_p);111113112112-tEplKernel PUBLIC EplTimerkModifyTimerMs(tEplTimerHdl* pTimerHdl_p,113113- unsigned long ulTime_p,114114- tEplTimerArg Argument_p);114114+tEplKernel PUBLIC EplTimerkModifyTimerMs(tEplTimerHdl * pTimerHdl_p,115115+ unsigned long ulTime_p,116116+ tEplTimerArg Argument_p);115117116116-tEplKernel PUBLIC EplTimerkDeleteTimer(tEplTimerHdl* pTimerHdl_p);118118+tEplKernel PUBLIC EplTimerkDeleteTimer(tEplTimerHdl * pTimerHdl_p);117119#endif118118-#endif // #ifndef _EPLTIMERK_H_119119-120120-120120+#endif // #ifndef _EPLTIMERK_H_
+1-6
drivers/staging/epl/kernel/VirtualEthernet.h
···66666767 2006/09/19 d.k.: start of the implementation, version 1.0068686969-7069****************************************************************************/71707271#ifndef _EPL_VETH_H_···7778// const defines7879//---------------------------------------------------------------------------79808080-8181//---------------------------------------------------------------------------8282// typedef8383//---------------------------------------------------------------------------8484-85848685//---------------------------------------------------------------------------8786// function prototypes···93969497#endif // #if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_VETH)) != 0)95989696-#endif // #ifndef _EPL_VETH_H_9797-9898-9999+#endif // #ifndef _EPL_VETH_H_