Home
last modified time | relevance | path

Searched refs:config_match (Results 1 – 2 of 2) sorted by relevance

/linux-6.12.1/drivers/regulator/
Dda9121-regulator.c895 bool config_match = false; in da9121_check_device_type() local
921 config_match = (variant_vrc == DA9121_VARIANT_VRC); in da9121_check_device_type()
925 config_match = (variant_vrc == DA9130_VARIANT_VRC); in da9121_check_device_type()
929 config_match = (variant_vrc == DA9220_VARIANT_VRC); in da9121_check_device_type()
933 config_match = (variant_vrc == DA9132_VARIANT_VRC); in da9121_check_device_type()
937 config_match = (variant_vrc == DA9122_VARIANT_VRC); in da9121_check_device_type()
941 config_match = (variant_vrc == DA9131_VARIANT_VRC); in da9121_check_device_type()
945 config_match = (variant_vrc == DA9217_VARIANT_VRC); in da9121_check_device_type()
956 config_match = (variant_vrc == DA9141_VARIANT_VRC); in da9121_check_device_type()
960 config_match = (variant_vrc == DA9142_VARIANT_VRC); in da9121_check_device_type()
[all …]
/linux-6.12.1/arch/x86/events/intel/
Dp4.c622 u64 config_match; in p4_get_alias_event() local
633 config_match = config & P4_CONFIG_EVENT_ALIAS_MASK; in p4_get_alias_event()
636 if (config_match == p4_event_aliases[i].original) { in p4_get_alias_event()
637 config_match = p4_event_aliases[i].alternative; in p4_get_alias_event()
639 } else if (config_match == p4_event_aliases[i].alternative) { in p4_get_alias_event()
640 config_match = p4_event_aliases[i].original; in p4_get_alias_event()
648 return config_match | (config & P4_CONFIG_EVENT_ALIAS_IMMUTABLE_BITS); in p4_get_alias_event()