aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/haptic/haptic.h
diff options
context:
space:
mode:
authorzvecr <git@zvecr.com>2019-11-17 14:02:26 +0000
committerDrashna Jaelre <drashna@live.com>2019-11-17 08:25:58 -0800
commita91c0c476507cb8c12840abb59bff34ab0de3c03 (patch)
tree313d9a0ec2f17c47f33305b350eef8768b5efa1c /drivers/haptic/haptic.h
parent6b18ca2875ceb38011f32f2d17238ba55ce7ad67 (diff)
downloadfirmware-a91c0c476507cb8c12840abb59bff34ab0de3c03.tar.gz
firmware-a91c0c476507cb8c12840abb59bff34ab0de3c03.tar.bz2
firmware-a91c0c476507cb8c12840abb59bff34ab0de3c03.zip
Run clang-format manually to fix recently changed files
Diffstat (limited to 'drivers/haptic/haptic.h')
-rw-r--r--drivers/haptic/haptic.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/haptic/haptic.h b/drivers/haptic/haptic.h
index 2f6eb31fc..5d3bd1c31 100644
--- a/drivers/haptic/haptic.h
+++ b/drivers/haptic/haptic.h
@@ -34,14 +34,14 @@
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;
- uint16_t reserved :7;
+ 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;
+ uint16_t reserved : 7;
};
} haptic_config_t;