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