2008-02-22 22:09:31

by Paolo Ciarrocchi

[permalink] [raw]
Subject: [PATCH 00/20] Various Coding Style fixes

Various coding style fixes.

Paolo Ciarrocchi (20):
x86: Coding Style fix to arch/x86/boot/pm.c
x86: Coding Style fixes to arch/x86/kernel/summit_32.c
x86: Coding Style fixes to arch/x86/kernel/cpu/intel.c
x86: Coding Style fixes to arch/x86/oprofile/init.c
x86: Coding Style fixes to arch/x86/lib/strstr_32.c
x86: Coding Style fixes to arch/x86/kernel/mca_32.c
x86: Coding Style fixes to arch/x86/kernel/cpu/mtrr/state.c
x86: Coding Style fixes to arch/x86/lib/memcpy_32.c
x86: Coding Style fixes to arch/x86/kernel/cpu/transmeta.c
x86: Coding Style fixes to arch/x86/kernel/cpu/amd.c
x86: Coding Style fixes to arch/x86/kernel/vm86_32.c
x86: Coding Style fixes to arch/x86/kernel/cpu/mcheck/non-fatal.c
x86: Coding Style fixes to arch/x86/kernel/cpu/mcheck/winchip.c
x86: Coding Style fixes to arch/x86/kernel/cpu/mcheck/mce_32.c
x86: Coding Style fixes to arch/x86/boot/cpucheck.c
x86: Coding Style fixes to arch/x86/kernel/cpu/cyrix.c
x86: Coding Style fixes to arch/x86/oprofile/nmi_timer_int.c
x86: Coding Style fixes to arch/x86/kernel/acpi/sleep.c
x86: Coding Style fixes to arch/x86/kernel/msr.c
x86: Coding Style fixes to arch/x86/xen/multicalls.c

arch/x86/boot/cpucheck.c | 20 ++--
arch/x86/boot/pm.c | 2 +-
arch/x86/kernel/acpi/sleep.c | 2 +-
arch/x86/kernel/cpu/amd.c | 94 +++++++++---------
arch/x86/kernel/cpu/cyrix.c | 115 +++++++++++-----------
arch/x86/kernel/cpu/intel.c | 83 ++++++++-------
arch/x86/kernel/cpu/mcheck/mce_32.c | 50 +++++-----
arch/x86/kernel/cpu/mcheck/non-fatal.c | 21 ++--
arch/x86/kernel/cpu/mcheck/winchip.c | 8 +-
arch/x86/kernel/cpu/mtrr/state.c | 14 ++-
arch/x86/kernel/cpu/transmeta.c | 22 ++--
arch/x86/kernel/mca_32.c | 96 ++++++++++--------
arch/x86/kernel/msr.c | 4 +-
arch/x86/kernel/summit_32.c | 43 ++++----
arch/x86/kernel/vm86_32.c | 174 ++++++++++++++++----------------
arch/x86/lib/memcpy_32.c | 2 +-
arch/x86/lib/strstr_32.c | 4 +-
arch/x86/oprofile/init.c | 13 ++-
arch/x86/oprofile/nmi_timer_int.c | 6 +-
arch/x86/xen/multicalls.c | 4 +-
20 files changed, 403 insertions(+), 374 deletions(-)


2008-02-23 10:45:42

by Ingo Molnar

[permalink] [raw]
Subject: Re: [PATCH 00/20] Various Coding Style fixes


* Paolo Ciarrocchi <[email protected]> wrote:

> Various coding style fixes.
>
> Paolo Ciarrocchi (20):
> x86: Coding Style fix to arch/x86/boot/pm.c
> x86: Coding Style fixes to arch/x86/kernel/summit_32.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/intel.c
> x86: Coding Style fixes to arch/x86/oprofile/init.c
> x86: Coding Style fixes to arch/x86/lib/strstr_32.c
> x86: Coding Style fixes to arch/x86/kernel/mca_32.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/mtrr/state.c
> x86: Coding Style fixes to arch/x86/lib/memcpy_32.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/transmeta.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/amd.c
> x86: Coding Style fixes to arch/x86/kernel/vm86_32.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/mcheck/non-fatal.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/mcheck/winchip.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/mcheck/mce_32.c
> x86: Coding Style fixes to arch/x86/boot/cpucheck.c
> x86: Coding Style fixes to arch/x86/kernel/cpu/cyrix.c
> x86: Coding Style fixes to arch/x86/oprofile/nmi_timer_int.c
> x86: Coding Style fixes to arch/x86/kernel/acpi/sleep.c
> x86: Coding Style fixes to arch/x86/kernel/msr.c
> x86: Coding Style fixes to arch/x86/xen/multicalls.c

thanks Paolo, they look good and i've applied all of them.

Ingo