Home
last modified time | relevance | path

Searched refs:GPIOD_FLAG_ACTIVE_LOW (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/gpio/
H A Dgpiolib-cdev.c147 assign_bit(GPIOD_FLAG_ACTIVE_LOW, &flags, in linehandle_flags_to_desc_flags()
704 flags |= test_bit(GPIOD_FLAG_ACTIVE_LOW, &line->desc->flags) ? in hte_edge_setup()
708 flags |= test_bit(GPIOD_FLAG_ACTIVE_LOW, &line->desc->flags) ? in hte_edge_setup()
810 if (test_bit(GPIOD_FLAG_ACTIVE_LOW, &line->desc->flags)) in debounced_value()
1040 irqflags |= test_bit(GPIOD_FLAG_ACTIVE_LOW, &line->desc->flags) ? in edge_detector_setup()
1043 irqflags |= test_bit(GPIOD_FLAG_ACTIVE_LOW, &line->desc->flags) ? in edge_detector_setup()
1216 assign_bit(GPIOD_FLAG_ACTIVE_LOW, &flags, in gpio_v2_line_config_flags_to_desc_flags()
2094 irqflags |= test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags) ? in lineevent_create()
2097 irqflags |= test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags) ? in lineevent_create()
2265 if (test_bit(GPIOD_FLAG_ACTIVE_LOW, &dflags)) in gpio_desc_to_lineinfo()
H A Dgpiolib.c2532 clear_bit(GPIOD_FLAG_ACTIVE_LOW, &flags); in gpiod_free_commit()
3037 if (test_bit(GPIOD_FLAG_ACTIVE_LOW, &flags)) in gpiod_direction_output_nonotify()
3247 return test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags); in gpiod_is_active_low()
3258 change_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags); in gpiod_toggle_active_low()
3464 if (!raw && test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_get_array_value_complex()
3526 if (test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_get_value()
3795 test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_set_array_value_complex()
3870 if (test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_set_value_nocheck()
4260 if (test_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_get_value_cansleep()
4904 set_bit(GPIOD_FLAG_ACTIVE_LOW, &desc->flags); in gpiod_configure_flags()
[all …]
H A Dgpiolib.h193 #define GPIOD_FLAG_ACTIVE_LOW 6 /* GPIO is active-low */ macro