aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/setup.c
diff options
context:
space:
mode:
authorArjan van de Ven <arjan@linux.intel.com>2008-10-05 11:08:10 -0700
committerIngo Molnar <mingo@elte.hu>2008-10-27 18:09:43 +0100
commit04d2aac33eb54fd3084140f2db130530d71e97c6 (patch)
tree1dcd39e36505ac9e713e862fb0a44f18add7a604 /arch/x86/kernel/setup.c
parentf8d56f1771e4867acc461146764b4feeb5245669 (diff)
downloadkernel_samsung_smdk4412-04d2aac33eb54fd3084140f2db130530d71e97c6.zip
kernel_samsung_smdk4412-04d2aac33eb54fd3084140f2db130530d71e97c6.tar.gz
kernel_samsung_smdk4412-04d2aac33eb54fd3084140f2db130530d71e97c6.tar.bz2
x86: corruption-check: fix some style issues
Impact: cleanup Before moving the code to it's own file, fix some style issues in the corruption check code. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/setup.c')
-rw-r--r--arch/x86/kernel/setup.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 0fa6790..4f38e03 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -662,7 +662,7 @@ static void __init setup_bios_corruption_check(void)
corruption_check_size = round_up(corruption_check_size, PAGE_SIZE);
- while(addr < corruption_check_size && num_scan_areas < MAX_SCAN_AREAS) {
+ while (addr < corruption_check_size && num_scan_areas < MAX_SCAN_AREAS) {
u64 size;
addr = find_e820_area_size(addr, &size, PAGE_SIZE);
@@ -701,11 +701,11 @@ void check_for_bios_corruption(void)
if (!memory_corruption_check)
return;
- for(i = 0; i < num_scan_areas; i++) {
+ for (i = 0; i < num_scan_areas; i++) {
unsigned long *addr = __va(scan_areas[i].addr);
unsigned long size = scan_areas[i].size;
- for(; size; addr++, size -= sizeof(unsigned long)) {
+ for (; size; addr++, size -= sizeof(unsigned long)) {
if (!*addr)
continue;
printk(KERN_ERR "Corrupted low memory at %p (%lx phys) = %08lx\n",
@@ -721,7 +721,8 @@ void check_for_bios_corruption(void)
static void periodic_check_for_corruption(unsigned long data)
{
check_for_bios_corruption();
- mod_timer(&periodic_check_timer, round_jiffies(jiffies + corruption_check_period*HZ));
+ mod_timer(&periodic_check_timer,
+ round_jiffies(jiffies + corruption_check_period*HZ));
}
void start_periodic_check_for_corruption(void)