diff options
author | Robin Getz <rgetz@blackfin.uclinux.org> | 2008-10-16 11:05:28 -0400 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2008-10-16 11:05:28 -0400 |
commit | 9bebeff98ea960b13c4de95782c54f8e5e8b70fc (patch) | |
tree | ace1c16dae132f4dafd3d1c77713b098d00ee541 /arch/blackfin | |
parent | ded963a486e08eb89a2c861c3323fe33abf2c6c8 (diff) |
Blackfin arch: fix bug - build kernel failed at head.S when reprogram clock on all platforms
Signed-off-by: Robin Getz <rgetz@blackfin.uclinux.org>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/mach-bf527/head.S | 2 | ||||
-rw-r--r-- | arch/blackfin/mach-bf533/head.S | 2 | ||||
-rw-r--r-- | arch/blackfin/mach-bf537/head.S | 2 | ||||
-rw-r--r-- | arch/blackfin/mach-bf548/head.S | 2 | ||||
-rw-r--r-- | arch/blackfin/mach-bf561/head.S | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/arch/blackfin/mach-bf527/head.S b/arch/blackfin/mach-bf527/head.S index 6588170e3845..0eb1da85db73 100644 --- a/arch/blackfin/mach-bf527/head.S +++ b/arch/blackfin/mach-bf527/head.S | |||
@@ -88,7 +88,7 @@ ENTRY(_start_dma_code) | |||
88 | r1 = r1 << 8; /* Shift it over */ | 88 | r1 = r1 << 8; /* Shift it over */ |
89 | r0 = r1 | r0; /* add them all together */ | 89 | r0 = r1 | r0; /* add them all together */ |
90 | #ifdef ANOMALY_05000265 | 90 | #ifdef ANOMALY_05000265 |
91 | r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ | 91 | BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ |
92 | #endif | 92 | #endif |
93 | 93 | ||
94 | p0.h = hi(PLL_CTL); | 94 | p0.h = hi(PLL_CTL); |
diff --git a/arch/blackfin/mach-bf533/head.S b/arch/blackfin/mach-bf533/head.S index 619685b94d90..9fc95aaca439 100644 --- a/arch/blackfin/mach-bf533/head.S +++ b/arch/blackfin/mach-bf533/head.S | |||
@@ -79,7 +79,7 @@ ENTRY(_start_dma_code) | |||
79 | r1 = r1 << 8; /* Shift it over */ | 79 | r1 = r1 << 8; /* Shift it over */ |
80 | r0 = r1 | r0; /* add them all together */ | 80 | r0 = r1 | r0; /* add them all together */ |
81 | #ifdef ANOMALY_05000265 | 81 | #ifdef ANOMALY_05000265 |
82 | r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ | 82 | BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ |
83 | #endif | 83 | #endif |
84 | 84 | ||
85 | p0.h = hi(PLL_CTL); | 85 | p0.h = hi(PLL_CTL); |
diff --git a/arch/blackfin/mach-bf537/head.S b/arch/blackfin/mach-bf537/head.S index 559a7eef7a38..f5c94bf80e3b 100644 --- a/arch/blackfin/mach-bf537/head.S +++ b/arch/blackfin/mach-bf537/head.S | |||
@@ -88,7 +88,7 @@ ENTRY(_start_dma_code) | |||
88 | r1 = r1 << 8; /* Shift it over */ | 88 | r1 = r1 << 8; /* Shift it over */ |
89 | r0 = r1 | r0; /* add them all together */ | 89 | r0 = r1 | r0; /* add them all together */ |
90 | #ifdef ANOMALY_05000265 | 90 | #ifdef ANOMALY_05000265 |
91 | r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ | 91 | BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ |
92 | #endif | 92 | #endif |
93 | 93 | ||
94 | p0.h = hi(PLL_CTL); | 94 | p0.h = hi(PLL_CTL); |
diff --git a/arch/blackfin/mach-bf548/head.S b/arch/blackfin/mach-bf548/head.S index 051b05c88027..93b361dff27b 100644 --- a/arch/blackfin/mach-bf548/head.S +++ b/arch/blackfin/mach-bf548/head.S | |||
@@ -95,7 +95,7 @@ ENTRY(_start_dma_code) | |||
95 | r1 = r1 << 8; /* Shift it over */ | 95 | r1 = r1 << 8; /* Shift it over */ |
96 | r0 = r1 | r0; /* add them all together */ | 96 | r0 = r1 | r0; /* add them all together */ |
97 | #ifdef ANOMALY_05000265 | 97 | #ifdef ANOMALY_05000265 |
98 | r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ | 98 | BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ |
99 | #endif | 99 | #endif |
100 | 100 | ||
101 | p0.h = hi(PLL_CTL); | 101 | p0.h = hi(PLL_CTL); |
diff --git a/arch/blackfin/mach-bf561/head.S b/arch/blackfin/mach-bf561/head.S index 0b28137b3dea..31a777a9e699 100644 --- a/arch/blackfin/mach-bf561/head.S +++ b/arch/blackfin/mach-bf561/head.S | |||
@@ -78,7 +78,7 @@ ENTRY(_start_dma_code) | |||
78 | r1 = r1 << 8; /* Shift it over */ | 78 | r1 = r1 << 8; /* Shift it over */ |
79 | r0 = r1 | r0; /* add them all together */ | 79 | r0 = r1 | r0; /* add them all together */ |
80 | #ifdef ANOMALY_05000265 | 80 | #ifdef ANOMALY_05000265 |
81 | r0 = BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ | 81 | BITSET(r0, 15); /* Add 250 mV of hysteresis to SPORT input pins */ |
82 | #endif | 82 | #endif |
83 | 83 | ||
84 | p0.h = hi(PLL_CTL); | 84 | p0.h = hi(PLL_CTL); |