diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2013-01-22 06:59:30 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2013-02-01 04:00:22 -0500 |
commit | 7034228792cc561e79ff8600f02884bd4c80e287 (patch) | |
tree | 89b77af37d087d9de236fc5d21f60bf552d0a2c6 /arch/mips/vr41xx | |
parent | 405ab01c70e18058d9c01a1256769a61fc65413e (diff) |
MIPS: Whitespace cleanup.
Having received another series of whitespace patches I decided to do this
once and for all rather than dealing with this kind of patches trickling
in forever.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/vr41xx')
-rw-r--r-- | arch/mips/vr41xx/common/bcu.c | 4 | ||||
-rw-r--r-- | arch/mips/vr41xx/common/cmu.c | 16 | ||||
-rw-r--r-- | arch/mips/vr41xx/common/giu.c | 2 | ||||
-rw-r--r-- | arch/mips/vr41xx/common/icu.c | 8 | ||||
-rw-r--r-- | arch/mips/vr41xx/common/pmu.c | 2 | ||||
-rw-r--r-- | arch/mips/vr41xx/common/rtc.c | 2 | ||||
-rw-r--r-- | arch/mips/vr41xx/common/type.c | 2 |
7 files changed, 18 insertions, 18 deletions
diff --git a/arch/mips/vr41xx/common/bcu.c b/arch/mips/vr41xx/common/bcu.c index 6346c59c9f9d..ff7d1c66cf82 100644 --- a/arch/mips/vr41xx/common/bcu.c +++ b/arch/mips/vr41xx/common/bcu.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * bcu.c, Bus Control Unit routines for the NEC VR4100 series. | 2 | * bcu.c, Bus Control Unit routines for the NEC VR4100 series. |
3 | * | 3 | * |
4 | * Copyright (C) 2002 MontaVista Software Inc. | 4 | * Copyright (C) 2002 MontaVista Software Inc. |
5 | * Author: Yoichi Yuasa <source@mvista.com> | 5 | * Author: Yoichi Yuasa <source@mvista.com> |
6 | * Copyright (C) 2003-2005 Yoichi Yuasa <yuasa@linux-mips.org> | 6 | * Copyright (C) 2003-2005 Yoichi Yuasa <yuasa@linux-mips.org> |
7 | * | 7 | * |
@@ -176,7 +176,7 @@ static inline unsigned long calculate_vtclock(uint16_t clkspeed, unsigned long p | |||
176 | } | 176 | } |
177 | 177 | ||
178 | static inline unsigned long calculate_tclock(uint16_t clkspeed, unsigned long pclock, | 178 | static inline unsigned long calculate_tclock(uint16_t clkspeed, unsigned long pclock, |
179 | unsigned long vtclock) | 179 | unsigned long vtclock) |
180 | { | 180 | { |
181 | unsigned long tclock = 0; | 181 | unsigned long tclock = 0; |
182 | 182 | ||
diff --git a/arch/mips/vr41xx/common/cmu.c b/arch/mips/vr41xx/common/cmu.c index 8ba7d04a5ec5..05302bfdd114 100644 --- a/arch/mips/vr41xx/common/cmu.c +++ b/arch/mips/vr41xx/common/cmu.c | |||
@@ -217,24 +217,24 @@ static int __init vr41xx_cmu_init(void) | |||
217 | unsigned long start, size; | 217 | unsigned long start, size; |
218 | 218 | ||
219 | switch (current_cpu_type()) { | 219 | switch (current_cpu_type()) { |
220 | case CPU_VR4111: | 220 | case CPU_VR4111: |
221 | case CPU_VR4121: | 221 | case CPU_VR4121: |
222 | start = CMU_TYPE1_BASE; | 222 | start = CMU_TYPE1_BASE; |
223 | size = CMU_TYPE1_SIZE; | 223 | size = CMU_TYPE1_SIZE; |
224 | break; | 224 | break; |
225 | case CPU_VR4122: | 225 | case CPU_VR4122: |
226 | case CPU_VR4131: | 226 | case CPU_VR4131: |
227 | start = CMU_TYPE2_BASE; | 227 | start = CMU_TYPE2_BASE; |
228 | size = CMU_TYPE2_SIZE; | 228 | size = CMU_TYPE2_SIZE; |
229 | break; | 229 | break; |
230 | case CPU_VR4133: | 230 | case CPU_VR4133: |
231 | start = CMU_TYPE3_BASE; | 231 | start = CMU_TYPE3_BASE; |
232 | size = CMU_TYPE3_SIZE; | 232 | size = CMU_TYPE3_SIZE; |
233 | break; | 233 | break; |
234 | default: | 234 | default: |
235 | panic("Unexpected CPU of NEC VR4100 series"); | 235 | panic("Unexpected CPU of NEC VR4100 series"); |
236 | break; | 236 | break; |
237 | } | 237 | } |
238 | 238 | ||
239 | if (request_mem_region(start, size, "CMU") == NULL) | 239 | if (request_mem_region(start, size, "CMU") == NULL) |
240 | return -EBUSY; | 240 | return -EBUSY; |
diff --git a/arch/mips/vr41xx/common/giu.c b/arch/mips/vr41xx/common/giu.c index b32b3bc60441..32cc8d66b34e 100644 --- a/arch/mips/vr41xx/common/giu.c +++ b/arch/mips/vr41xx/common/giu.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * NEC VR4100 series GIU platform device. | 2 | * NEC VR4100 series GIU platform device. |
3 | * | 3 | * |
4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/icu.c b/arch/mips/vr41xx/common/icu.c index a39ef3207d71..41e873bc8474 100644 --- a/arch/mips/vr41xx/common/icu.c +++ b/arch/mips/vr41xx/common/icu.c | |||
@@ -49,11 +49,11 @@ static unsigned char sysint1_assign[16] = { | |||
49 | static unsigned char sysint2_assign[16] = { | 49 | static unsigned char sysint2_assign[16] = { |
50 | 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; | 50 | 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; |
51 | 51 | ||
52 | #define ICU1_TYPE1_BASE 0x0b000080UL | 52 | #define ICU1_TYPE1_BASE 0x0b000080UL |
53 | #define ICU2_TYPE1_BASE 0x0b000200UL | 53 | #define ICU2_TYPE1_BASE 0x0b000200UL |
54 | 54 | ||
55 | #define ICU1_TYPE2_BASE 0x0f000080UL | 55 | #define ICU1_TYPE2_BASE 0x0f000080UL |
56 | #define ICU2_TYPE2_BASE 0x0f0000a0UL | 56 | #define ICU2_TYPE2_BASE 0x0f0000a0UL |
57 | 57 | ||
58 | #define ICU1_SIZE 0x20 | 58 | #define ICU1_SIZE 0x20 |
59 | #define ICU2_SIZE 0x1c | 59 | #define ICU2_SIZE 0x1c |
diff --git a/arch/mips/vr41xx/common/pmu.c b/arch/mips/vr41xx/common/pmu.c index 9fbf5f0d1faf..70a3f90131d8 100644 --- a/arch/mips/vr41xx/common/pmu.c +++ b/arch/mips/vr41xx/common/pmu.c | |||
@@ -74,7 +74,7 @@ static inline void software_reset(void) | |||
74 | change_c0_config(CONF_CM_CMASK, CONF_CM_UNCACHED); | 74 | change_c0_config(CONF_CM_CMASK, CONF_CM_UNCACHED); |
75 | flush_cache_all(); | 75 | flush_cache_all(); |
76 | write_c0_wired(0); | 76 | write_c0_wired(0); |
77 | __asm__("jr %0"::"r"(0xbfc00000)); | 77 | __asm__("jr %0"::"r"(0xbfc00000)); |
78 | break; | 78 | break; |
79 | } | 79 | } |
80 | } | 80 | } |
diff --git a/arch/mips/vr41xx/common/rtc.c b/arch/mips/vr41xx/common/rtc.c index 76e3e8af7c96..c1e3d200920e 100644 --- a/arch/mips/vr41xx/common/rtc.c +++ b/arch/mips/vr41xx/common/rtc.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * NEC VR4100 series RTC platform device. | 2 | * NEC VR4100 series RTC platform device. |
3 | * | 3 | * |
4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> | 4 | * Copyright (C) 2007 Yoichi Yuasa <yuasa@linux-mips.org> |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |
diff --git a/arch/mips/vr41xx/common/type.c b/arch/mips/vr41xx/common/type.c index ff841422b638..45836a92b7a1 100644 --- a/arch/mips/vr41xx/common/type.c +++ b/arch/mips/vr41xx/common/type.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * type.c, System type for NEC VR4100 series. | 2 | * type.c, System type for NEC VR4100 series. |
3 | * | 3 | * |
4 | * Copyright (C) 2005 Yoichi Yuasa <yuasa@linux-mips.org> | 4 | * Copyright (C) 2005 Yoichi Yuasa <yuasa@linux-mips.org> |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License as published by | 7 | * it under the terms of the GNU General Public License as published by |