Staging: epl: remove GENERIC
authorGreg Kroah-Hartman <gregkh@suse.de>
Mon, 23 Mar 2009 18:37:22 +0000 (11:37 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:20 +0000 (14:54 -0700)
It wasn't used and isn't needed.

Cc: Daniel Krueger <daniel.krueger@systec-electronic.com>
Cc: Ronald Sieber <Ronald.Sieber@systec-electronic.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/epl/Epl.h
drivers/staging/epl/EplApiGeneric.c
drivers/staging/epl/EplApiLinuxKernel.c
drivers/staging/epl/EplErrorHandlerk.c
drivers/staging/epl/demo_main.c
drivers/staging/epl/global.h

index 6e5910d..74038b7 100644 (file)
@@ -133,7 +133,7 @@ typedef union {
 
 typedef tEplKernel(ROM *tEplApiCbEvent) (tEplApiEventType EventType_p, // IN: event type (enum)
                                         tEplApiEventArg *pEventArg_p,  // IN: event argument (union)
-                                        void GENERIC *pUserArg_p);
+                                        void *pUserArg_p);
 
 typedef struct {
        unsigned int m_uiSizeOfStruct;
index e174562..58286fc 100644 (file)
@@ -588,7 +588,7 @@ tEplKernel EplApiLinkObject(unsigned int uiObjIndex_p,
                EntrySize = (tEplObdSize) sizeof(bIndexEntries);
                RetCode = EplObdReadEntry(uiObjIndex_p,
                                          0x00,
-                                         (void GENERIC *)&bIndexEntries,
+                                         (void *)&bIndexEntries,
                                          &EntrySize);
 
                if ((RetCode != kEplSuccessful) || (bIndexEntries == 0x00)) {
@@ -1839,7 +1839,7 @@ static tEplKernel EplApiUpdateObd(void)
                // write Device Name (0x1008)
                Ret =
                    EplObdWriteEntry(0x1008, 0,
-                                    (void GENERIC *)EplApiInstance_g.
+                                    (void *)EplApiInstance_g.
                                     m_InitParam.m_pszDevName,
                                     (tEplObdSize) strlen(EplApiInstance_g.
                                                          m_InitParam.
@@ -1854,7 +1854,7 @@ static tEplKernel EplApiUpdateObd(void)
                // write Hardware version (0x1009)
                Ret =
                    EplObdWriteEntry(0x1009, 0,
-                                    (void GENERIC *)EplApiInstance_g.
+                                    (void *)EplApiInstance_g.
                                     m_InitParam.m_pszHwVersion,
                                     (tEplObdSize) strlen(EplApiInstance_g.
                                                          m_InitParam.
@@ -1869,7 +1869,7 @@ static tEplKernel EplApiUpdateObd(void)
                // write Software version (0x100A)
                Ret =
                    EplObdWriteEntry(0x100A, 0,
-                                    (void GENERIC *)EplApiInstance_g.
+                                    (void *)EplApiInstance_g.
                                     m_InitParam.m_pszSwVersion,
                                     (tEplObdSize) strlen(EplApiInstance_g.
                                                          m_InitParam.
index 8d4a218..52f8e1b 100644 (file)
@@ -206,7 +206,7 @@ typedef struct {
 
 tEplKernel EplLinCbEvent(tEplApiEventType EventType_p, // IN: event type (enum)
                         tEplApiEventArg *pEventArg_p,  // IN: event argument (union)
-                        void GENERIC *pUserArg_p);
+                        void *pUserArg_p);
 
 tEplKernel EplLinCbSync(void);
 
@@ -1160,7 +1160,7 @@ static int EplLinIoctl(struct inode *pDeviceFile_p,       // information about the dev
 
 tEplKernel EplLinCbEvent(tEplApiEventType EventType_p, // IN: event type (enum)
                         tEplApiEventArg *pEventArg_p,  // IN: event argument (union)
-                        void GENERIC *pUserArg_p)
+                        void *pUserArg_p)
 {
        tEplKernel EplRet = kEplSuccessful;
        int iErr;
index 25a44d9..120e77e 100644 (file)
@@ -774,7 +774,7 @@ static tEplKernel EplErrorHandlerkLinkArray(DWORD * pdwValue_p,
 
        EntrySize = (tEplObdSize) sizeof(bIndexEntries);
        Ret = EplObdReadEntry(uiIndex_p,
-                             0x00, (void GENERIC *)&bIndexEntries, &EntrySize);
+                             0x00, (void *)&bIndexEntries, &EntrySize);
 
        if ((Ret != kEplSuccessful) || (bIndexEntries == 0x00)) {
                // Object doesn't exist or invalid entry number
index 6be30d6..20787dc 100644 (file)
@@ -192,7 +192,7 @@ tEplKernel EplObdInitRam(tEplObdInitParam MEM * pInitParam_p);
 
 tEplKernel AppCbEvent(tEplApiEventType EventType_p,    // IN: event type (enum)
                      tEplApiEventArg *pEventArg_p,     // IN: event argument (union)
-                     void GENERIC *pUserArg_p);
+                     void *pUserArg_p);
 
 tEplKernel AppCbSync(void);
 
@@ -486,7 +486,7 @@ static void __exit EplLinExit(void)
 
 tEplKernel AppCbEvent(tEplApiEventType EventType_p,    // IN: event type (enum)
                      tEplApiEventArg *pEventArg_p,     // IN: event argument (union)
-                     void GENERIC *pUserArg_p)
+                     void *pUserArg_p)
 {
        tEplKernel EplRet = kEplSuccessful;
 
index 3a987db..6214075 100644 (file)
                                        // usage: CONST BYTE ROM foo = 0x00;
 #define HWACC                  // hardware access through external memory (i.e. CAN)
 
-       // These types can be adjusted by users to match application requirements. The goal is to
-       // minimize code memory and maximize speed.
-#define GENERIC                        // generic pointer to point to application data
-                                       // Variables with this attribute can be located in external
-                                       // or internal data memory.
 #define MEM                    // Memory attribute to optimize speed and code of pointer access.
 
 #ifndef NEAR