1 /*
2  * Copyright 2023 Google LLC
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #ifndef ZEPHYR_DRIVERS_INPUT_LINUX_EVDEV_BOTTOM_H_
8 #define ZEPHYR_DRIVERS_INPUT_LINUX_EVDEV_BOTTOM_H_
9 
10 #include <stdint.h>
11 
12 #define NATIVE_LINUX_EVDEV_NO_DATA INT32_MIN
13 
14 int linux_evdev_read(int fd, uint16_t *type, uint16_t *code, int32_t *value);
15 int linux_evdev_open(const char *path);
16 
17 #endif /* ZEPHYR_DRIVERS_INPUT_LINUX_EVDEV_BOTTOM_H_ */
18