board/sg-led.c: Remove error path from update cmd

No way to return it to the host application anyway since this
command is unacknowledged.
This commit is contained in:
Tau
2019-02-25 21:55:49 -05:00
parent 8606d17699
commit 2cbb18604b
3 changed files with 4 additions and 11 deletions

View File

@ -8,7 +8,7 @@
struct sg_led_ops {
HRESULT (*reset)(void *ctx);
HRESULT (*set_color)(void *ctx, uint8_t r, uint8_t g, uint8_t b);
void (*set_color)(void *ctx, uint8_t r, uint8_t g, uint8_t b);
};
struct sg_led {