diff options
| author | Greg Ungerer <gerg@snapgear.com> | 2007-05-17 06:12:22 +0100 | 
|---|---|---|
| committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-05-20 19:36:04 +0100 | 
| commit | 1d28bff7c4ea138032b44d514351b7caceb9fba5 (patch) | |
| tree | c032866da484fa1ae5e173921d9b30de9f97902f | |
| parent | 516793c61b3db1f60e0b0d0e3c382bcca9ae84fd (diff) | |
[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>
| -rw-r--r-- | arch/arm/kernel/setup.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index 0453dcc757b4..650eac1bc0a6 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c @@ -918,7 +918,7 @@ static int c_show(struct seq_file *m, void *v)  	if ((processor_id & 0x0008f000) == 0x00000000) {  		/* pre-ARM7 */ -		seq_printf(m, "CPU part\t\t: %07x\n", processor_id >> 4); +		seq_printf(m, "CPU part\t: %07x\n", processor_id >> 4);  	} else {  		if ((processor_id & 0x0008f000) == 0x00007000) {  			/* ARM7 */ | 
