[ARM] 4387/1: fix /proc/cpuinfo formatting for pre-ARM7 parts

Fix the formating of the "CPU part" field to be consistent with
the other fields for pre-ARM7 parts. One tab to many for them to
all line up.

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>

authored by Greg Ungerer and committed by Russell King 1d28bff7 516793c6

+1 -1
+1 -1
arch/arm/kernel/setup.c
··· 918 919 if ((processor_id & 0x0008f000) == 0x00000000) { 920 /* pre-ARM7 */ 921 - seq_printf(m, "CPU part\t\t: %07x\n", processor_id >> 4); 922 } else { 923 if ((processor_id & 0x0008f000) == 0x00007000) { 924 /* ARM7 */
··· 918 919 if ((processor_id & 0x0008f000) == 0x00000000) { 920 /* pre-ARM7 */ 921 + seq_printf(m, "CPU part\t: %07x\n", processor_id >> 4); 922 } else { 923 if ((processor_id & 0x0008f000) == 0x00007000) { 924 /* ARM7 */