34 lines
859 B
C
Executable File
34 lines
859 B
C
Executable File
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: const.h
|
|
*
|
|
* Description: const symbol definition for platform.
|
|
*
|
|
* Version: 2.0
|
|
* Create: 2017-11-02 10:19:02
|
|
* Revision: none
|
|
* Compiler: gcc version 6.3.0 (crosstool-NG crosstool-ng-1.23.0)
|
|
*
|
|
* Author: caozilong@allwinnertech.com
|
|
* Organization: BU1-PSW
|
|
* Last Modified: 2019-05-24 13:59:19
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
#ifndef _CONST_H_
|
|
#define _CONST_H_
|
|
|
|
#include <kconfig.h>
|
|
|
|
#define EPDK_ARCH_SUNI 1
|
|
#define EPDK_ARCH_SUNII 2
|
|
#define EPDK_ARCH_SUNIII 3
|
|
#define EPDK_ARCH_SUNIV 4
|
|
#define EPDK_ARCH EPDK_ARCH_SUNIV
|
|
|
|
#define CLINE (6)
|
|
|
|
#endif /* #ifndef _CONST_H_ */
|