diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 14:16:58 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-27 14:20:15 -0500 |
commit | 7c50bd89cffaa6899c963305d5aea8418b23f51b (patch) | |
tree | 960c6d8b026517063a2dc62efa2fa95242cab897 /src/pru/gpio.c | |
parent | c3eb97611900c3ebacf943ad232ba318645e84ce (diff) | |
download | kutter-7c50bd89cffaa6899c963305d5aea8418b23f51b.tar.gz kutter-7c50bd89cffaa6899c963305d5aea8418b23f51b.tar.xz kutter-7c50bd89cffaa6899c963305d5aea8418b23f51b.zip |
pru: Wrap code to 80 columns
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/pru/gpio.c')
-rw-r--r-- | src/pru/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pru/gpio.c b/src/pru/gpio.c index 0a641639..79b313ad 100644 --- a/src/pru/gpio.c +++ b/src/pru/gpio.c @@ -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=®s->cleardataout, .bit=bit }; + struct gpio_out rv = (struct gpio_out){.reg=®s->cleardataout, .bit=bit}; gpio_out_write(rv, val); regs->oe &= ~bit; *MUXREG(mux_offset) = 0x0f; |