From f1be6a3969882ebf080f547fc70dff155f295fa1 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Wed, 27 Feb 2019 13:49:31 -0500 Subject: [PATCH] pwmcmds: Wrap code to 80 columns Signed-off-by: Kevin O'Connor --- src/pwmcmds.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/pwmcmds.c b/src/pwmcmds.c index cf025ddb..3de12d9c 100644 --- a/src/pwmcmds.c +++ b/src/pwmcmds.c @@ -38,7 +38,8 @@ void command_config_pwm_out(uint32_t *args) { struct gpio_pwm pin = gpio_pwm_setup(args[1], args[2], args[3]); - struct pwm_out_s *p = oid_alloc(args[0], command_config_pwm_out, sizeof(*p)); + struct pwm_out_s *p = oid_alloc(args[0], command_config_pwm_out + , sizeof(*p)); p->pin = pin; p->default_value = args[4]; p->max_duration = args[5]; @@ -76,4 +77,5 @@ command_set_pwm_out(uint32_t *args) { gpio_pwm_setup(args[0], args[1], args[2]); } -DECL_COMMAND(command_set_pwm_out, "set_pwm_out pin=%u cycle_ticks=%u value=%hu"); +DECL_COMMAND(command_set_pwm_out, + "set_pwm_out pin=%u cycle_ticks=%u value=%hu");