From 74ad447ec7825fa61f9dff4b88e2abdfa6fe35f3 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Thu, 14 Jun 2012 11:48:07 -0700 Subject: [PATCH] More idiotic editor formatting fixup. --- firmware/sgpio/sgpio.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/firmware/sgpio/sgpio.c b/firmware/sgpio/sgpio.c index cbf4a470..f3616f5d 100644 --- a/firmware/sgpio/sgpio.c +++ b/firmware/sgpio/sgpio.c @@ -45,10 +45,11 @@ void pin_setup(void) { GPIO6_DIR = 0; GPIO7_DIR = 0; - /* Configure GPIO2[1/2/8] (P4_1/2 P6_12) as output. */GPIO2_DIR |= (PIN_LED1 - | PIN_LED2 | PIN_LED3); + /* Configure GPIO2[1/2/8] (P4_1/2 P6_12) as output. */ + GPIO2_DIR |= (PIN_LED1 | PIN_LED2 | PIN_LED3); - /* GPIO3[6] on P6_10 as output. */GPIO3_DIR |= PIN_EN1V8; + /* GPIO3[6] on P6_10 as output. */ + GPIO3_DIR |= PIN_EN1V8; /* Configure SSP1 Peripheral (to be moved later in SSP driver) */ scu_pinmux(SCU_SSP1_MISO, (SCU_SSP_IO | SCU_CONF_FUNCTION5));