add twinpass detection to ifxmips
SVN-Revision: 9956
This commit is contained in:
parent
6343c3be59
commit
abf8d4c8cb
1 changed files with 6 additions and 2 deletions
|
@ -41,6 +41,7 @@
|
|||
#define BOARD_DANUBE_CHIPID 0x10129083
|
||||
|
||||
#define BOARD_TWINPASS "Twinpass"
|
||||
#define BOARD_TWINPASS_CHIPID 0x3012D083
|
||||
|
||||
#define BOARD_DANUBE "Danube"
|
||||
|
||||
|
@ -103,6 +104,9 @@ get_system_type (void)
|
|||
{
|
||||
case BOARD_DANUBE_CHIPID:
|
||||
return BOARD_DANUBE;
|
||||
|
||||
case BOARD_TWINPASS_CHIPID:
|
||||
return BOARD_TWINPASS;
|
||||
}
|
||||
|
||||
return BOARD_SYSTEM_TYPE;
|
||||
|
|
Loading…
Reference in a new issue