Commit 69036c8cc29465f866f352199534be603acc79dd

Authored by Jaswinder Singh Rajput
Committed by Ingo Molnar
1 parent 5f66b2a0d9

x86: time_32.c fix style problems

Impact: cleanup

Fix:

 ERROR: space prohibited after that open parenthesis '('
 ERROR: space prohibited before that close parenthesis ')'

total: 4 errors, 0 warnings

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

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

arch/x86/kernel/time_32.c
... ... @@ -105,8 +105,8 @@
105 105 high bit of the PPI port B (0x61). Note that some PS/2s,
106 106 notably the 55SX, work fine if this is removed. */
107 107  
108   - u8 irq_v = inb_p( 0x61 ); /* read the current state */
109   - outb_p( irq_v|0x80, 0x61 ); /* reset the IRQ */
  108 + u8 irq_v = inb_p(0x61); /* read the current state */
  109 + outb_p(irq_v | 0x80, 0x61); /* reset the IRQ */
110 110 }
111 111 #endif
112 112