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>
     //--------------------------------------------------------------------------------------
 
     // memory attributes for instance table
-#define INST_NEAR              // faster access to variables
 #define INST_FAR               // variables wich have to located in xdata
 #define STATIC                 // prevent warnings for variables with same name
 
 #else // only one instance is used
 
     // Memory attributes for instance table.
-#define INST_NEAR   NEAR       // faster access to variables
 #define INST_FAR    MEM                // variables wich have to located in xdata
 #define STATIC      static     // prevent warnings for variables with same name
 
 
 INSTANCE_TYPE_BEGIN EPL_MCO_DECL_INSTANCE_MEMBER()
 
 STATIC tEplObdInitParam INST_FAR m_ObdInitParam;
-STATIC tEplObdStoreLoadObjCallback INST_NEAR m_fpStoreLoadObjCallback;
+STATIC tEplObdStoreLoadObjCallback m_fpStoreLoadObjCallback;
 
 INSTANCE_TYPE_END
 // decomposition of float
 
 
 #define MEM                    // Memory attribute to optimize speed and code of pointer access.
 
-#ifndef NEAR
-#define NEAR                   // variables mapped to internal data storage location
-#endif
-
 #ifndef FAR
 #define FAR                    // variables mapped to external data storage location
 #endif