From 7a5d099ff8c40af521455bb2556a4d62bd5c687c Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Sat, 19 Jun 2010 03:32:24 +0200 Subject: [PATCH] Fixed order of includes in "cpu.cpp". Using the wrong order caused the default value to be used for JZ_EXTAL. This is the wrong value for the Dingoo A320 and for the Ben NanoNote, but since none of the functions that use this value are called the actual result is nothing but a warning. --- src/cpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpu.cpp b/src/cpu.cpp index 0d63d3e..c3c2526 100644 --- a/src/cpu.cpp +++ b/src/cpu.cpp @@ -3,8 +3,8 @@ #include #include #include -#include "jz4740.h" #include "cpu.h" +#include "jz4740.h" inline int sdram_convert(unsigned int pllin,unsigned int *sdram_freq) {