x86: ldt.c fix style problems

Impact: cleanup

Fixes style problems:

WARNING: Use #include <linux/uaccess.h> instead of <asm/uaccess.h>
ERROR: space required before the open parenthesis '('

total: 1 errors, 1 warnings

Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>

authored by

Jaswinder Singh Rajput and committed by
Ingo Molnar
423a5405 f634fa94

+2 -2
+2 -2
arch/x86/kernel/ldt.c
··· 12 12 #include <linux/mm.h> 13 13 #include <linux/smp.h> 14 14 #include <linux/vmalloc.h> 15 + #include <linux/uaccess.h> 15 16 16 - #include <asm/uaccess.h> 17 17 #include <asm/system.h> 18 18 #include <asm/ldt.h> 19 19 #include <asm/desc.h> ··· 93 93 if (err < 0) 94 94 return err; 95 95 96 - for(i = 0; i < old->size; i++) 96 + for (i = 0; i < old->size; i++) 97 97 write_ldt_entry(new->ldt, i, old->ldt + i * LDT_ENTRY_SIZE); 98 98 return 0; 99 99 }