diff options
author | fauxpark <fauxpark@gmail.com> | 2019-12-30 05:21:58 +1100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-12-29 10:21:58 -0800 |
commit | 8af1501328711ba806785861b183786cb5cbb80a (patch) | |
tree | f31c64951d5c750038d30a2955911425d4cf6058 /drivers/issi/is31fl3731-simple.h | |
parent | 25aaeb4f401fedee00e90e9fe27bdea5fed778d6 (diff) | |
download | qmk_firmware-8af1501328711ba806785861b183786cb5cbb80a.tar.gz |
Clean up ISSI driver includes (#7734)
* Clean up ISSI driver includes
* Missed an endif
Diffstat (limited to 'drivers/issi/is31fl3731-simple.h')
-rw-r--r-- | drivers/issi/is31fl3731-simple.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/issi/is31fl3731-simple.h b/drivers/issi/is31fl3731-simple.h index a223c351e..85b458753 100644 --- a/drivers/issi/is31fl3731-simple.h +++ b/drivers/issi/is31fl3731-simple.h @@ -16,8 +16,10 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef IS31FL3731_DRIVER_H -#define IS31FL3731_DRIVER_H +#pragma once + +#include <stdint.h> +#include <stdbool.h> typedef struct is31_led { uint8_t driver : 2; @@ -203,5 +205,3 @@ void IS31FL3731_update_led_control_registers(uint8_t addr, uint8_t index); #define C9_14 0xB1 #define C9_15 0xB2 #define C9_16 0xB3 - -#endif // IS31FL3731_DRIVER_H |