Searched refs:FLAG_ACTIVE_LOW (Results 1 – 5 of 5) sorted by relevance
/linux-5.19.10/drivers/gpio/ |
D | gpiolib-sysfs.c | 172 irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ? in gpio_sysfs_request_irq() 175 irq_flags |= test_bit(FLAG_ACTIVE_LOW, &desc->flags) ? in gpio_sysfs_request_irq() 289 if (!!test_bit(FLAG_ACTIVE_LOW, &desc->flags) == !!value) in gpio_sysfs_set_active_low() 292 assign_bit(FLAG_ACTIVE_LOW, &desc->flags, value); in gpio_sysfs_set_active_low() 313 value = !!test_bit(FLAG_ACTIVE_LOW, &desc->flags); in active_low_show()
|
D | gpiolib-cdev.c | 137 assign_bit(FLAG_ACTIVE_LOW, flagsp, in linehandle_flags_to_desc_flags() 597 if (test_bit(FLAG_ACTIVE_LOW, &line->desc->flags)) in process_hw_ts_thread() 746 if (test_bit(FLAG_ACTIVE_LOW, &line->desc->flags)) in debounced_value() 793 if (test_bit(FLAG_ACTIVE_LOW, &line->desc->flags)) in debounce_work_func() 840 flags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? in hte_edge_setup() 843 flags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? in hte_edge_setup() 987 irqflags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? in edge_detector_setup() 990 irqflags |= test_bit(FLAG_ACTIVE_LOW, &line->desc->flags) ? in edge_detector_setup() 1148 assign_bit(FLAG_ACTIVE_LOW, flagsp, in gpio_v2_line_config_flags_to_desc_flags() 1313 (!!test_bit(FLAG_ACTIVE_LOW, &desc->flags) != in linereq_set_config_unlocked() [all …]
|
D | gpiolib-legacy.c | 43 set_bit(FLAG_ACTIVE_LOW, &desc->flags); in gpio_request_one()
|
D | gpiolib.h | 151 #define FLAG_ACTIVE_LOW 6 /* value has active low */ macro
|
D | gpiolib.c | 2037 clear_bit(FLAG_ACTIVE_LOW, &desc->flags); in gpiod_free_commit() 2400 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_direction_output() 2585 return test_bit(FLAG_ACTIVE_LOW, &desc->flags); in gpiod_is_active_low() 2596 change_bit(FLAG_ACTIVE_LOW, &desc->flags); in gpiod_toggle_active_low() 2752 if (!raw && test_bit(FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_get_array_value_complex() 2812 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_get_value() 3029 test_bit(FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_set_array_value_complex() 3095 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_set_value_nocheck() 3456 if (test_bit(FLAG_ACTIVE_LOW, &desc->flags)) in gpiod_get_value_cansleep() 3929 set_bit(FLAG_ACTIVE_LOW, &desc->flags); in gpiod_configure_flags() [all …]
|