aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/mach-bf537
diff options
context:
space:
mode:
authorGraf Yang <graf.yang@analog.com>2008-04-23 16:43:14 -0400
committerBryan Wu <cooloney@kernel.org>2008-04-23 16:43:14 -0400
commit6ed839423073251b513664fdadb180634aed704b (patch)
tree073350299070ba091f4fb4fb146b9a931edc44b8 /arch/blackfin/mach-bf537
parentdb68254f0639a357309f02cf8707490265fa7a31 (diff)
[Blackfin] arch: Resolve the clash issue of UART defines between blackfin headers and include/linux/serial_reg.
Signed-off-by: Graf Yang <graf.yang@analog.com> Cc: Robin Getz <rgetz@blackfin.uclinux.org> Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf537')
-rw-r--r--arch/blackfin/mach-bf537/head.S16
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/blackfin/mach-bf537/head.S b/arch/blackfin/mach-bf537/head.S
index ac85fdfbfd01..9e9fac9c6345 100644
--- a/arch/blackfin/mach-bf537/head.S
+++ b/arch/blackfin/mach-bf537/head.S
@@ -182,26 +182,26 @@ ENTRY(__start)
182 182
183 /* Initialise UART - when booting from u-boot, the UART is not disabled 183 /* Initialise UART - when booting from u-boot, the UART is not disabled
184 * so if we dont initalize here, our serial console gets hosed */ 184 * so if we dont initalize here, our serial console gets hosed */
185 p0.h = hi(UART_LCR); 185 p0.h = hi(BFIN_UART_LCR);
186 p0.l = lo(UART_LCR); 186 p0.l = lo(BFIN_UART_LCR);
187 r0 = 0x0(Z); 187 r0 = 0x0(Z);
188 w[p0] = r0.L; /* To enable DLL writes */ 188 w[p0] = r0.L; /* To enable DLL writes */
189 ssync; 189 ssync;
190 190
191 p0.h = hi(UART_DLL); 191 p0.h = hi(BFIN_UART_DLL);
192 p0.l = lo(UART_DLL); 192 p0.l = lo(BFIN_UART_DLL);
193 r0 = 0x0(Z); 193 r0 = 0x0(Z);
194 w[p0] = r0.L; 194 w[p0] = r0.L;
195 ssync; 195 ssync;
196 196
197 p0.h = hi(UART_DLH); 197 p0.h = hi(BFIN_UART_DLH);
198 p0.l = lo(UART_DLH); 198 p0.l = lo(BFIN_UART_DLH);
199 r0 = 0x00(Z); 199 r0 = 0x00(Z);
200 w[p0] = r0.L; 200 w[p0] = r0.L;
201 ssync; 201 ssync;
202 202
203 p0.h = hi(UART_GCTL); 203 p0.h = hi(BFIN_UART_GCTL);
204 p0.l = lo(UART_GCTL); 204 p0.l = lo(BFIN_UART_GCTL);
205 r0 = 0x0(Z); 205 r0 = 0x0(Z);
206 w[p0] = r0.L; /* To enable UART clock */ 206 w[p0] = r0.L; /* To enable UART clock */
207 ssync; 207 ssync;