[ARM] 3732/1: S3C24XX: tidy syntax in osiris and anubis machines

Patch from Ben Dooks

Tidy the syntax, such as missing ,'s on the end of
struct entries, in the Osiris and Anubis machines.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Ben Dooks and committed by Russell King 705630db 34d92626

+23 -22
+13 -12
arch/arm/mach-s3c2410/mach-anubis.c
··· 60 60 .virtual = (u32)S3C24XX_VA_ISA_BYTE, 61 61 .pfn = __phys_to_pfn(0x0), 62 62 .length = SZ_4M, 63 - .type = MT_DEVICE 63 + .type = MT_DEVICE, 64 64 }, { 65 65 .virtual = (u32)S3C24XX_VA_ISA_WORD, 66 66 .pfn = __phys_to_pfn(0x0), 67 - .length = SZ_4M, MT_DEVICE 67 + .length = SZ_4M, 68 + .type = MT_DEVICE, 68 69 }, 69 70 70 71 /* we could possibly compress the next set down into a set of smaller tables ··· 79 78 .virtual = (u32)ANUBIS_VA_CTRL1, 80 79 .pfn = __phys_to_pfn(ANUBIS_PA_CTRL1), 81 80 .length = SZ_4K, 82 - .type = MT_DEVICE 81 + .type = MT_DEVICE, 83 82 }, { 84 83 .virtual = (u32)ANUBIS_VA_CTRL2, 85 84 .pfn = __phys_to_pfn(ANUBIS_PA_CTRL2), 86 85 .length = SZ_4K, 87 - .type =MT_DEVICE 86 + .type = MT_DEVICE, 88 87 }, 89 88 90 89 /* IDE drives */ ··· 127 126 .name = "pclk", 128 127 .divisor = 1, 129 128 .min_baud = 0, 130 - .max_baud = 0. 129 + .max_baud = 0, 131 130 } 132 131 }; 133 132 ··· 140 139 .ulcon = ULCON, 141 140 .ufcon = UFCON, 142 141 .clocks = anubis_serial_clocks, 143 - .clocks_size = ARRAY_SIZE(anubis_serial_clocks) 142 + .clocks_size = ARRAY_SIZE(anubis_serial_clocks), 144 143 }, 145 144 [1] = { 146 145 .hwport = 2, ··· 149 148 .ulcon = ULCON, 150 149 .ufcon = UFCON, 151 150 .clocks = anubis_serial_clocks, 152 - .clocks_size = ARRAY_SIZE(anubis_serial_clocks) 151 + .clocks_size = ARRAY_SIZE(anubis_serial_clocks), 153 152 }, 154 153 }; 155 154 ··· 163 162 [0] = { 164 163 .name = "Boot Agent", 165 164 .size = SZ_16K, 166 - .offset = 0 165 + .offset = 0, 167 166 }, 168 167 [1] = { 169 168 .name = "/boot", ··· 195 194 .nr_chips = 1, 196 195 .nr_map = external_map, 197 196 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part), 198 - .partitions = anubis_default_nand_part 197 + .partitions = anubis_default_nand_part, 199 198 }, 200 199 [0] = { 201 200 .name = "chip0", 202 201 .nr_chips = 1, 203 202 .nr_map = chip0_map, 204 203 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part), 205 - .partitions = anubis_default_nand_part 204 + .partitions = anubis_default_nand_part, 206 205 }, 207 206 [2] = { 208 207 .name = "chip1", 209 208 .nr_chips = 1, 210 209 .nr_map = chip1_map, 211 210 .nr_partitions = ARRAY_SIZE(anubis_default_nand_part), 212 - .partitions = anubis_default_nand_part 211 + .partitions = anubis_default_nand_part, 213 212 }, 214 213 }; 215 214 ··· 314 313 .devices = anubis_devices, 315 314 .devices_count = ARRAY_SIZE(anubis_devices), 316 315 .clocks = anubis_clocks, 317 - .clocks_count = ARRAY_SIZE(anubis_clocks) 316 + .clocks_count = ARRAY_SIZE(anubis_clocks), 318 317 }; 319 318 320 319 static void __init anubis_map_io(void)
+10 -10
arch/arm/mach-s3c2410/mach-osiris.c
··· 67 67 .virtual = (u32)OSIRIS_VA_CTRL1, 68 68 .pfn = __phys_to_pfn(OSIRIS_PA_CTRL1), 69 69 .length = SZ_16K, 70 - .type = MT_DEVICE 70 + .type = MT_DEVICE, 71 71 }, { 72 72 .virtual = (u32)OSIRIS_VA_CTRL2, 73 73 .pfn = __phys_to_pfn(OSIRIS_PA_CTRL2), 74 74 .length = SZ_16K, 75 - .type = MT_DEVICE 75 + .type = MT_DEVICE, 76 76 }, 77 77 }; 78 78 ··· 91 91 .name = "pclk", 92 92 .divisor = 1, 93 93 .min_baud = 0, 94 - .max_baud = 0. 94 + .max_baud = 0, 95 95 } 96 96 }; 97 97 ··· 103 103 .ulcon = ULCON, 104 104 .ufcon = UFCON, 105 105 .clocks = osiris_serial_clocks, 106 - .clocks_size = ARRAY_SIZE(osiris_serial_clocks) 106 + .clocks_size = ARRAY_SIZE(osiris_serial_clocks), 107 107 }, 108 108 [1] = { 109 109 .hwport = 1, ··· 112 112 .ulcon = ULCON, 113 113 .ufcon = UFCON, 114 114 .clocks = osiris_serial_clocks, 115 - .clocks_size = ARRAY_SIZE(osiris_serial_clocks) 115 + .clocks_size = ARRAY_SIZE(osiris_serial_clocks), 116 116 }, 117 117 }; 118 118 ··· 126 126 [0] = { 127 127 .name = "Boot Agent", 128 128 .size = SZ_16K, 129 - .offset = 0 129 + .offset = 0, 130 130 }, 131 131 [1] = { 132 132 .name = "/boot", ··· 158 158 .nr_chips = 1, 159 159 .nr_map = external_map, 160 160 .nr_partitions = ARRAY_SIZE(osiris_default_nand_part), 161 - .partitions = osiris_default_nand_part 161 + .partitions = osiris_default_nand_part, 162 162 }, 163 163 [0] = { 164 164 .name = "chip0", 165 165 .nr_chips = 1, 166 166 .nr_map = chip0_map, 167 167 .nr_partitions = ARRAY_SIZE(osiris_default_nand_part), 168 - .partitions = osiris_default_nand_part 168 + .partitions = osiris_default_nand_part, 169 169 }, 170 170 [2] = { 171 171 .name = "chip1", 172 172 .nr_chips = 1, 173 173 .nr_map = chip1_map, 174 174 .nr_partitions = ARRAY_SIZE(osiris_default_nand_part), 175 - .partitions = osiris_default_nand_part 175 + .partitions = osiris_default_nand_part, 176 176 }, 177 177 }; 178 178 ··· 245 245 .devices = osiris_devices, 246 246 .devices_count = ARRAY_SIZE(osiris_devices), 247 247 .clocks = osiris_clocks, 248 - .clocks_count = ARRAY_SIZE(osiris_clocks) 248 + .clocks_count = ARRAY_SIZE(osiris_clocks), 249 249 }; 250 250 251 251 static void __init osiris_map_io(void)