1# Copyright (c) 2024 SILA Embedded Solutions GmbH 2# SPDX-License-Identifier: Apache-2.0 3 4config MAX31790_SENSOR 5 bool "MAX31790 sensors" 6 default y 7 depends on MAX31790_FAN_SPEED || MAX31790_FAN_FAULT 8 help 9 Enable sensors for the MAX31790 PWM controller. 10 11config MAX31790_FAN_SPEED 12 bool "MAX31790 fan speed sensor" 13 default y 14 depends on DT_HAS_MAXIM_MAX31790_FAN_SPEED_ENABLED 15 select MFD 16 help 17 Enable driver for the MAX31790 fan speed sensor. 18 19config MAX31790_FAN_FAULT 20 bool "MAX31790 fan fault sensor" 21 default y 22 depends on DT_HAS_MAXIM_MAX31790_FAN_FAULT_ENABLED 23 select MFD 24 help 25 Enable driver for the MAX31790 fan fault sensor. 26