1 1.1 jmcneill /* $NetBSD: gpio-keys.h,v 1.1.1.1 2018/04/28 18:25:53 jmcneill Exp $ */ 2 1.1 jmcneill 3 1.1 jmcneill /* SPDX-License-Identifier: GPL-2.0 */ 4 1.1 jmcneill /* 5 1.1 jmcneill * This header provides constants for gpio keys bindings. 6 1.1 jmcneill */ 7 1.1 jmcneill 8 1.1 jmcneill #ifndef _DT_BINDINGS_GPIO_KEYS_H 9 1.1 jmcneill #define _DT_BINDINGS_GPIO_KEYS_H 10 1.1 jmcneill 11 1.1 jmcneill #define EV_ACT_ANY 0x00 /* asserted or deasserted */ 12 1.1 jmcneill #define EV_ACT_ASSERTED 0x01 /* asserted */ 13 1.1 jmcneill #define EV_ACT_DEASSERTED 0x02 /* deasserted */ 14 1.1 jmcneill 15 1.1 jmcneill #endif /* _DT_BINDINGS_GPIO_KEYS_H */ 16