Lines Matching refs:temp2
3883 struct snd_ucm_ident_node *temp1, *temp2; in snd_ucm_del_ident_from_list() local
3890 temp2 = *head; in snd_ucm_del_ident_from_list()
3891 *head = temp2->next; in snd_ucm_del_ident_from_list()
3895 temp2 = temp1->next; in snd_ucm_del_ident_from_list()
3896 while (temp2 != NULL) { in snd_ucm_del_ident_from_list()
3897 if (!strncmp(temp2->ident, value, (strlen(value)+1))) { in snd_ucm_del_ident_from_list()
3898 temp1->next = temp2->next; in snd_ucm_del_ident_from_list()
3903 temp2 = temp1->next; in snd_ucm_del_ident_from_list()
3909 temp2->next = NULL; in snd_ucm_del_ident_from_list()
3910 temp2->ident[0] = 0; in snd_ucm_del_ident_from_list()
3911 temp2->active = 0; in snd_ucm_del_ident_from_list()
3912 temp2->capability = 0; in snd_ucm_del_ident_from_list()
3913 free(temp2); in snd_ucm_del_ident_from_list()
3914 temp2 = NULL; in snd_ucm_del_ident_from_list()