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.zip rockbox-2f7a26230c673a6f7b2d40a9ea38de9f209dc4a5.tar.gz rockbox-2f7a26230c673a6f7b2d40a9ea38de9f209dc4a5.tar.bz2 rockbox-2f7a26230c673a6f7b2d40a9ea38de9f209dc4a5.tar.xz | |
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 94b0c4e..ff8daf0 100644 --- a/firmware/export/s5l8700.h +++ b/firmware/export/s5l8700.h @@ -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 |