Merge pull request #7919 from orbea/osx

Attempt to fix xcode8 travis build failure.
This commit is contained in:
Twinaphex 2019-01-07 10:02:16 +01:00 committed by GitHub
commit c1477c10b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,14 +15,13 @@
#include "../led_driver.h"
#include "../../verbosity.h"
static void null_init(void) { }
static void null_free(void) { }
static void null_set(int led, int state) { }
static void null_led_init(void) { }
static void null_led_free(void) { }
static void null_led_set(int led, int state) { }
const led_driver_t null_led_driver = {
null_init,
null_free,
null_set,
null_led_init,
null_led_free,
null_led_set,
"null"
};