Skip to content

Commit

Permalink
Blackfin arch: fix bug - build kernel failed at head.S when reprogram…
Browse files Browse the repository at this point in the history
… clock on all platforms

Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
  • Loading branch information
Robin Getz authored and Bryan Wu committed Oct 16, 2008
1 parent ded963a commit 9bebeff
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arch/blackfin/mach-bf527/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ ENTRY(_start_dma_code)
r1 = r1 << 8; /* Shift it over */
r0 = r1 | r0; /* add them all together */
#ifdef ANOMALY_05000265
r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
#endif

p0.h = hi(PLL_CTL);
Expand Down
2 changes: 1 addition & 1 deletion arch/blackfin/mach-bf533/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ ENTRY(_start_dma_code)
r1 = r1 << 8; /* Shift it over */
r0 = r1 | r0; /* add them all together */
#ifdef ANOMALY_05000265
r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
#endif

p0.h = hi(PLL_CTL);
Expand Down
2 changes: 1 addition & 1 deletion arch/blackfin/mach-bf537/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ ENTRY(_start_dma_code)
r1 = r1 << 8; /* Shift it over */
r0 = r1 | r0; /* add them all together */
#ifdef ANOMALY_05000265
r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
#endif

p0.h = hi(PLL_CTL);
Expand Down
2 changes: 1 addition & 1 deletion arch/blackfin/mach-bf548/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ ENTRY(_start_dma_code)
r1 = r1 << 8; /* Shift it over */
r0 = r1 | r0; /* add them all together */
#ifdef ANOMALY_05000265
r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
#endif

p0.h = hi(PLL_CTL);
Expand Down
2 changes: 1 addition & 1 deletion arch/blackfin/mach-bf561/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ ENTRY(_start_dma_code)
r1 = r1 << 8; /* Shift it over */
r0 = r1 | r0; /* add them all together */
#ifdef ANOMALY_05000265
r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */
#endif

p0.h = hi(PLL_CTL);
Expand Down

0 comments on commit 9bebeff

Please sign in to comment.