diff options
author | Harald Koerfgen <hkoerfg@web.de> | 2001-04-14 14:10:09 +0000 |
---|---|---|
committer | Harald Koerfgen <hkoerfg@web.de> | 2001-04-14 14:10:09 +0000 |
commit | 12aec3920d5f693401007cecb58ee0ae557264b4 (patch) | |
tree | 658c179ae52a14f0a6a4ac40fb3f18b673ae3c9e /arch | |
parent | b9cb119293abfa73fad4025af778de76a2201c9f (diff) |
Beautification
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mips/kernel/proc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/kernel/proc.c b/arch/mips/kernel/proc.c index bbf7c1b5e..2a066ccaa 100644 --- a/arch/mips/kernel/proc.c +++ b/arch/mips/kernel/proc.c @@ -14,7 +14,7 @@ unsigned long unaligned_instructions; unsigned int vced_count, vcei_count; -#ifdef CONFIG_PROC_FS +#if !defined(CONFIG_CPU_HAS_LLSC) unsigned long ll_ops, sc_ops; #endif @@ -88,9 +88,9 @@ int get_cpuinfo(char *buffer) len += sprintf(buffer + len, fmt, 'I', vcei_count); #if !defined(CONFIG_CPU_HAS_LLSC) - len += sprintf(buffer + len, "ll emulations\t: %lu\n", + len += sprintf(buffer + len, "ll emulations\t\t: %lu\n", ll_ops); - len += sprintf(buffer + len, "sc emulations\t: %lu\n", + len += sprintf(buffer + len, "sc emulations\t\t: %lu\n", sc_ops); #endif return len; |