Lines Matching refs:codec
33 static int verb_write_ioctl(struct hda_codec *codec, in verb_write_ioctl() argument
40 res = snd_hda_codec_read(codec, verb >> 24, 0, in verb_write_ioctl()
47 static int get_wcap_ioctl(struct hda_codec *codec, in get_wcap_ioctl() argument
54 res = get_wcaps(codec, verb >> 24); in get_wcap_ioctl()
66 struct hda_codec *codec = hw->private_data; in hda_hwdep_ioctl() local
73 return verb_write_ioctl(codec, argp); in hda_hwdep_ioctl()
75 return get_wcap_ioctl(codec, argp); in hda_hwdep_ioctl()
97 int snd_hda_create_hwdep(struct hda_codec *codec) in snd_hda_create_hwdep() argument
103 sprintf(hwname, "HDA Codec %d", codec->addr); in snd_hda_create_hwdep()
104 err = snd_hwdep_new(codec->card, hwname, codec->addr, &hwdep); in snd_hda_create_hwdep()
107 codec->hwdep = hwdep; in snd_hda_create_hwdep()
108 sprintf(hwdep->name, "HDA Codec %d", codec->addr); in snd_hda_create_hwdep()
110 hwdep->private_data = codec; in snd_hda_create_hwdep()
121 dev_set_drvdata(&hwdep->dev, codec); in snd_hda_create_hwdep()