Staging: epl: remove CONST
authorGreg Kroah-Hartman <gregkh@suse.de>
Mon, 23 Mar 2009 19:24:46 +0000 (12:24 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 3 Apr 2009 21:54:21 +0000 (14:54 -0700)
Just make it const

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/EplObd.c
drivers/staging/epl/demo_main.c
drivers/staging/epl/global.h

index 6d53e1c..f449f4c 100644 (file)
@@ -2185,12 +2185,10 @@ static tEplObdSize EplObdGetObjectSize(tEplObdSubEntryPtr pSubIndexEntry_p)
                        // The current position is not decleared. The string
                        // is located in ROM, therefor use default pointer.
                        pData = (void *)pSubIndexEntry_p->m_pDefault;
-                       if ((CONST void *)pData != (CONST void *)NULL) {
+                       if ((const void *)pData != (const void *)NULL) {
                                // The max. size of strings defined by STRING-Macro is stored in
                                // tEplObdVString of default value.
-                               DataSize =
-                                   ((CONST tEplObdVString *) pData)->
-                                   m_Size;
+                               DataSize = ((const tEplObdVString *)pData)->m_Size;
                        }
                }
 
@@ -2209,12 +2207,10 @@ static tEplObdSize EplObdGetObjectSize(tEplObdSubEntryPtr pSubIndexEntry_p)
                        // The current position is not decleared. The string
                        // is located in ROM, therefor use default pointer.
                        pData = (void *)pSubIndexEntry_p->m_pDefault;
-                       if ((CONST void *)pData != (CONST void *)NULL) {
+                       if ((const void *)pData != (const void *)NULL) {
                                // The max. size of strings defined by STRING-Macro is stored in
                                // tEplObdVString of default value.
-                               DataSize =
-                                   ((CONST tEplObdOString *) pData)->
-                                   m_Size;
+                               DataSize = ((const tEplObdOString *)pData)->m_Size;
                        }
                }
                break;
index 6e0db9a..4e60143 100644 (file)
@@ -148,7 +148,7 @@ void TgtDbgSignalTracePoint(BYTE bTracePointNumber_p);
 // modul globale vars
 //---------------------------------------------------------------------------
 
-CONST BYTE abMacAddr[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
+const BYTE abMacAddr[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
 
 BYTE bVarIn1_l;
 BYTE bVarOut1_l;
index 31ea536..51c7409 100644 (file)
 #define QWORD long long int
 #endif
 
-#ifndef CONST
-#define CONST const            // variables mapped to ROM (i.e. flash)
-#endif
-
 #define TRACE  printk
 
 // --- logic types ---