summaryrefslogtreecommitdiff
path: root/app/include/zmk/events/sensor-event.h
diff options
context:
space:
mode:
authorinnovaker <66737976+innovaker@users.noreply.github.com>2020-12-10 19:31:51 +0000
committerPete Johanson <peter@peterjohanson.com>2020-12-14 12:41:25 -0500
commit00ca0d2f1cb0a939e5207454d89c6d37ef9f45a6 (patch)
treef5c8b1fa7bed4838393576376140e8420f2e415b /app/include/zmk/events/sensor-event.h
parent1411092a7bb6e21e6e3a272737ad36d613e3b367 (diff)
refactor(app): replace `struct device *` with `const struct device *`
Replaced with RegExp: /(?<!const )(struct device \*)/g See: https://docs.zephyrproject.org/latest/releases/release-notes-2.4.html PR: #467
Diffstat (limited to 'app/include/zmk/events/sensor-event.h')
-rw-r--r--app/include/zmk/events/sensor-event.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/include/zmk/events/sensor-event.h b/app/include/zmk/events/sensor-event.h
index d1d72f4..0bd3ccf 100644
--- a/app/include/zmk/events/sensor-event.h
+++ b/app/include/zmk/events/sensor-event.h
@@ -13,7 +13,7 @@
struct sensor_event {
struct zmk_event_header header;
uint8_t sensor_number;
- struct device *sensor;
+ const struct device *sensor;
int64_t timestamp;
};