Home | History | Annotate | Download | only in linux

Lines Matching refs:UL

30 #define GPIOLINE_FLAG_KERNEL		(1UL << 0) /* Line used by the kernel */
31 #define GPIOLINE_FLAG_IS_OUT (1UL << 1)
32 #define GPIOLINE_FLAG_ACTIVE_LOW (1UL << 2)
33 #define GPIOLINE_FLAG_OPEN_DRAIN (1UL << 3)
34 #define GPIOLINE_FLAG_OPEN_SOURCE (1UL << 4)
59 #define GPIOHANDLE_REQUEST_INPUT (1UL << 0)
60 #define GPIOHANDLE_REQUEST_OUTPUT (1UL << 1)
61 #define GPIOHANDLE_REQUEST_ACTIVE_LOW (1UL << 2)
62 #define GPIOHANDLE_REQUEST_OPEN_DRAIN (1UL << 3)
63 #define GPIOHANDLE_REQUEST_OPEN_SOURCE (1UL << 4)
110 #define GPIOEVENT_REQUEST_RISING_EDGE (1UL << 0)
111 #define GPIOEVENT_REQUEST_FALLING_EDGE (1UL << 1)
112 #define GPIOEVENT_REQUEST_BOTH_EDGES ((1UL << 0) | (1UL << 1))