Commit 7e291434 authored by Bryan Wu's avatar Bryan Wu

Blackfin arch: Fix bug - USB fails to build for BF524/BF526

BF524 is the same as BF525, except the speed of the processor
BF526 is the same as BF527, except the speed of the processor
Signed-off-by: default avatarBryan Wu <cooloney@kernel.org>
parent ecb9567e
...@@ -39,22 +39,22 @@ ...@@ -39,22 +39,22 @@
#include "defBF522.h" #include "defBF522.h"
#include "anomaly.h" #include "anomaly.h"
#if defined(CONFIG_BF527) #if defined(CONFIG_BF527) || defined(CONFIG_BF526)
#include "defBF527.h" #include "defBF527.h"
#endif #endif
#if defined(CONFIG_BF525) #if defined(CONFIG_BF525) || defined(CONFIG_BF524)
#include "defBF525.h" #include "defBF525.h"
#endif #endif
#if !defined(__ASSEMBLY__) #if !defined(__ASSEMBLY__)
#include "cdefBF522.h" #include "cdefBF522.h"
#if defined(CONFIG_BF527) #if defined(CONFIG_BF527) || defined(CONFIG_BF526)
#include "cdefBF527.h" #include "cdefBF527.h"
#endif #endif
#if defined(CONFIG_BF525) #if defined(CONFIG_BF525) || defined(CONFIG_BF524)
#include "cdefBF525.h" #include "cdefBF525.h"
#endif #endif
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment