pru: Wrap code to 80 columns

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
Kevin O'Connor
2019-02-27 14:16:58 -05:00
parent c3eb976119
commit 7c50bd89cf
2 changed files with 22 additions and 21 deletions

View File

@@ -94,7 +94,7 @@ gpio_out_setup(uint8_t pin, uint8_t val)
goto fail;
struct gpio_regs *regs = digital_regs[GPIO2PORT(pin)];
uint32_t bit = GPIO2BIT(pin);
struct gpio_out rv = (struct gpio_out){ .reg=&regs->cleardataout, .bit=bit };
struct gpio_out rv = (struct gpio_out){.reg=&regs->cleardataout, .bit=bit};
gpio_out_write(rv, val);
regs->oe &= ~bit;
*MUXREG(mux_offset) = 0x0f;