Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: olpc_dcon: add whitespace around binary operators

This fixes a coding style issue where whitespace characters were missing
around some binary OR operators.

Signed-off-by: Kenneth Hsu <kennethhsu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Kenneth Hsu and committed by
Greg Kroah-Hartman
bd18762d fce3444a

+2 -2
+2 -2
drivers/staging/olpc_dcon/olpc_dcon_xo_1_5.c
··· 64 64 dcon_clear_irq(); 65 65 66 66 /* set PMIO_Rx52[6] to enable SCI/SMI on gpio12 */ 67 - outb(inb(VX855_GPI_SCI_SMI)|BIT_GPIO12, VX855_GPI_SCI_SMI); 67 + outb(inb(VX855_GPI_SCI_SMI) | BIT_GPIO12, VX855_GPI_SCI_SMI); 68 68 69 69 /* Determine the current state of DCONLOAD, likely set by firmware */ 70 70 /* GPIO1 */ ··· 129 129 udelay(5); 130 130 131 131 /* set PMIO_Rx52[6] to enable SCI/SMI on gpio12 */ 132 - outb(inb(VX855_GPI_SCI_SMI)|BIT_GPIO12, VX855_GPI_SCI_SMI); 132 + outb(inb(VX855_GPI_SCI_SMI) | BIT_GPIO12, VX855_GPI_SCI_SMI); 133 133 } 134 134 135 135 static void dcon_set_dconload_xo_1_5(int val)