Home | History | Annotate | Line # | Download | only in input
gpio-keys.h revision 1.1.1.1.2.2
      1 /*	$NetBSD: gpio-keys.h,v 1.1.1.1.2.2 2018/05/02 07:20:21 pgoyette 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