forked from len0rd/rockbox
Add missing parentheses to S5L8701 USEC_TIMER
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23749 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
9aeec057fd
commit
2f7a26230c
1 changed files with 1 additions and 1 deletions
|
|
@ -312,7 +312,7 @@
|
|||
#define TDCNT (*(REG32_PTR_T)(0x3C700074)) /* Counter register */
|
||||
#define FIVE_USEC_TIMER (((uint64_t)(*(REG32_PTR_T)(0x3C700080)) << 32) \
|
||||
| (*(REG32_PTR_T)(0x3C700084))) /* 64bit 5usec timer */
|
||||
#define USEC_TIMER FIVE_USEC_TIMER * 5 /* usecs */
|
||||
#define USEC_TIMER (FIVE_USEC_TIMER * 5) /* usecs */
|
||||
|
||||
/* 12. NAND FLASH CONTROLER */
|
||||
#if CONFIG_CPU==S5L8701
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue