1
0
Fork 0
forked from len0rd/rockbox
* Add missing mmu-mips.h change

Onda VX747:
 * Correct USB power handling
 * Improve NAND handling
 * Other minor fixes


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19921 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-02-04 17:37:05 +00:00
parent 9b13a5d151
commit d5827d5f9a
5 changed files with 66 additions and 40 deletions

View file

@ -3366,14 +3366,14 @@ do { \
#define __cpm_enable_osc_in_sleep() (REG_CPM_SCR |= CPM_SCR_OSC_ENABLE)
#define CFG_EXTAL 12000000
#define CFG_EXTAL (12000000)
#ifdef CFG_EXTAL
#define JZ_EXTAL CFG_EXTAL
#else
#define JZ_EXTAL 3686400
#define JZ_EXTAL (3686400)
#endif
#define JZ_EXTAL2 32768 /* RTC clock */
#define JZ_EXTAL2 (32768) /* RTC clock */
/* PLL output frequency */
static __inline__ unsigned int __cpm_get_pllout(void)