Skip to content

Commit

Permalink
Blackfin arch: Fix bug - USB fails to build for BF524/BF526
Browse files Browse the repository at this point in the history
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: Bryan Wu <cooloney@kernel.org>
  • Loading branch information
Bryan Wu committed May 19, 2008
1 parent ecb9567 commit 7e29143
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/asm-blackfin/mach-bf527/blackfin.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,22 @@
#include "defBF522.h"
#include "anomaly.h"

#if defined(CONFIG_BF527)
#if defined(CONFIG_BF527) || defined(CONFIG_BF526)
#include "defBF527.h"
#endif

#if defined(CONFIG_BF525)
#if defined(CONFIG_BF525) || defined(CONFIG_BF524)
#include "defBF525.h"
#endif

#if !defined(__ASSEMBLY__)
#include "cdefBF522.h"

#if defined(CONFIG_BF527)
#if defined(CONFIG_BF527) || defined(CONFIG_BF526)
#include "cdefBF527.h"
#endif

#if defined(CONFIG_BF525)
#if defined(CONFIG_BF525) || defined(CONFIG_BF524)
#include "cdefBF525.h"
#endif
#endif
Expand Down

0 comments on commit 7e29143

Please sign in to comment.