[CI] Format code according to conventions (#12838)

Co-authored-by: QMK Bot <hello@qmk.fm>
This commit is contained in:
github-actions[bot]
2021-05-10 03:15:00 +10:00
committed by GitHub
parent 1426ffc0ee
commit 6c5e94061c
2 changed files with 11 additions and 8 deletions

View File

@ -34,13 +34,13 @@
typedef union {
uint32_t raw;
struct {
bool enable : 1;
uint8_t feedback : 2;
uint8_t mode : 7;
bool buzz : 1;
uint8_t dwell : 7;
bool cont : 1;
uint8_t amplitude : 8;
bool enable : 1;
uint8_t feedback : 2;
uint8_t mode : 7;
bool buzz : 1;
uint8_t dwell : 7;
bool cont : 1;
uint8_t amplitude : 8;
uint8_t reserved : 5;
};
} haptic_config_t;