Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/regulator/
Dda9121-regulator.c896 bool config_match = false; in da9121_check_device_type() local
922 config_match = (variant_vrc == DA9121_VARIANT_VRC); in da9121_check_device_type()
926 config_match = (variant_vrc == DA9130_VARIANT_VRC); in da9121_check_device_type()
930 config_match = (variant_vrc == DA9220_VARIANT_VRC); in da9121_check_device_type()
934 config_match = (variant_vrc == DA9132_VARIANT_VRC); in da9121_check_device_type()
938 config_match = (variant_vrc == DA9122_VARIANT_VRC); in da9121_check_device_type()
942 config_match = (variant_vrc == DA9131_VARIANT_VRC); in da9121_check_device_type()
946 config_match = (variant_vrc == DA9217_VARIANT_VRC); in da9121_check_device_type()
957 config_match = (variant_vrc == DA9141_VARIANT_VRC); in da9121_check_device_type()
961 config_match = (variant_vrc == DA9142_VARIANT_VRC); in da9121_check_device_type()
[all …]
/linux-6.1.9/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()