diff options
author | Michael Sparmann <theseven@rockbox.org> | 2009-11-25 20:16:16 +0000 |
---|---|---|
committer | Michael Sparmann <theseven@rockbox.org> | 2009-11-25 20:16:16 +0000 |
commit | 2f7a26230c673a6f7b2d40a9ea38de9f209dc4a5 (patch) | |
tree | 795d42578d6270d730edf2fe26d55b0fc348b79c | |
parent | 9aeec057fd54f7643491c2dcb1cf5de01a420bef (diff) | |
download | rockbox-2f7a26230c673a6f7b2d40a9ea38de9f209dc4a5.tar.gz rockbox-2f7a26230c673a6f7b2d40a9ea38de9f209dc4a5.zip |
Add missing parentheses to S5L8701 USEC_TIMER
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23749 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/export/s5l8700.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/s5l8700.h b/firmware/export/s5l8700.h index 94b0c4e703..ff8daf044a 100644 --- a/firmware/export/s5l8700.h +++ b/firmware/export/s5l8700.h | |||
@@ -312,7 +312,7 @@ | |||
312 | #define TDCNT (*(REG32_PTR_T)(0x3C700074)) /* Counter register */ | 312 | #define TDCNT (*(REG32_PTR_T)(0x3C700074)) /* Counter register */ |
313 | #define FIVE_USEC_TIMER (((uint64_t)(*(REG32_PTR_T)(0x3C700080)) << 32) \ | 313 | #define FIVE_USEC_TIMER (((uint64_t)(*(REG32_PTR_T)(0x3C700080)) << 32) \ |
314 | | (*(REG32_PTR_T)(0x3C700084))) /* 64bit 5usec timer */ | 314 | | (*(REG32_PTR_T)(0x3C700084))) /* 64bit 5usec timer */ |
315 | #define USEC_TIMER FIVE_USEC_TIMER * 5 /* usecs */ | 315 | #define USEC_TIMER (FIVE_USEC_TIMER * 5) /* usecs */ |
316 | 316 | ||
317 | /* 12. NAND FLASH CONTROLER */ | 317 | /* 12. NAND FLASH CONTROLER */ |
318 | #if CONFIG_CPU==S5L8701 | 318 | #if CONFIG_CPU==S5L8701 |