Lines Matching refs:kc
36 struct snd_kcontrol *kc; in test_snd_soc_card_get_kcontrol() local
45 kc = snd_soc_card_get_kcontrol(card, test_card_controls[i].name); in test_snd_soc_card_get_kcontrol()
46 KUNIT_EXPECT_NOT_ERR_OR_NULL_MSG(test, kc, "Failed to find '%s'\n", in test_snd_soc_card_get_kcontrol()
48 if (!kc) in test_snd_soc_card_get_kcontrol()
52 mc = (struct soc_mixer_control *)kc->private_value; in test_snd_soc_card_get_kcontrol()
57 kc = snd_soc_card_get_kcontrol(card, "None"); in test_snd_soc_card_get_kcontrol()
58 KUNIT_EXPECT_NULL(test, kc); in test_snd_soc_card_get_kcontrol()
60 kc = snd_soc_card_get_kcontrol(card, "Left None"); in test_snd_soc_card_get_kcontrol()
61 KUNIT_EXPECT_NULL(test, kc); in test_snd_soc_card_get_kcontrol()
63 kc = snd_soc_card_get_kcontrol(card, "Left"); in test_snd_soc_card_get_kcontrol()
64 KUNIT_EXPECT_NULL(test, kc); in test_snd_soc_card_get_kcontrol()
66 kc = snd_soc_card_get_kcontrol(card, NULL); in test_snd_soc_card_get_kcontrol()
67 KUNIT_EXPECT_NULL(test, kc); in test_snd_soc_card_get_kcontrol()