Fix yellow
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23311 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2afce17cab
commit
4e651264c2
1 changed files with 3 additions and 2 deletions
|
@ -304,8 +304,9 @@
|
|||
#define TDDATA1 (*(REG32_PTR_T)(0x3C70006C)) /* Data1 Register */
|
||||
#define TDPRE (*(REG32_PTR_T)(0x3C700070)) /* Pre-scale register */
|
||||
#define TDCNT (*(REG32_PTR_T)(0x3C700074)) /* Counter register */
|
||||
#define USEC_TIMER (((*(REG32_PTR_T)(0x3C700080) << 32) \
|
||||
| *(REG32_PTR_T)(0x3C700084)) * 5) /* 64bit 5usec timer */
|
||||
#define FIVE_USEC_TIMER ((*(REG32_PTR_T)(0x3C700080) << 32) \
|
||||
| *(REG32_PTR_T)(0x3C700084)) /* 64bit 5usec timer */
|
||||
#define USEC_TIMER (*(REG32_PTR_T)(0x3C700084) * 5) /* lower 32 bits of the above as a usec timer */
|
||||
|
||||
/* 12. NAND FLASH CONTROLER */
|
||||
#if CONFIG_CPU==S5L8701
|
||||
|
|
Loading…
Reference in a new issue