Lines Matching full:turbo
32 /* TURBO mode max conversion time (t_{CONV}). */
62 /* Optional GPIO to enable turbo mode. */
63 struct gpio_desc *turbo; member
64 /* Indicates TURBO is hard-wired to be always enabled. */
537 adc->turbo = devm_gpiod_get_optional(dev, "turbo", GPIOD_OUT_LOW); in ad7944_probe()
538 if (IS_ERR(adc->turbo)) in ad7944_probe()
539 return dev_err_probe(dev, PTR_ERR(adc->turbo), in ad7944_probe()
540 "failed to get TURBO GPIO\n"); in ad7944_probe()
542 adc->always_turbo = device_property_present(dev, "adi,always-turbo"); in ad7944_probe()
544 if (adc->turbo && adc->always_turbo) in ad7944_probe()
546 "cannot have both turbo-gpios and adi,always-turbo\n"); in ad7944_probe()
550 "cannot have both chain mode and always turbo\n"); in ad7944_probe()