Lines Matching refs:res
83 * @res: pointer to store the response, NULL if performing asynchronously
88 unsigned int cmd, unsigned int *res)
93 err = snd_hdac_bus_exec_verb_unlocked(bus, addr, cmd, res);
103 * @res: pointer to store the response, NULL if performing asynchronously
108 unsigned int cmd, unsigned int *res)
116 if (res)
117 *res = -1;
119 res = &tmp;
130 if (!err && res) {
131 err = bus->ops->get_response(bus, addr, res);
132 trace_hda_get_response(bus, addr, *res);
141 * @res: unsolicited event (lower 32bit of RIRB entry)
148 void snd_hdac_bus_queue_event(struct hdac_bus *bus, u32 res, u32 res_ex)
155 trace_hda_unsol_event(bus, res, res_ex);
160 bus->unsol_queue[wp] = res;
174 unsigned int rp, caddr, res;
181 res = bus->unsol_queue[rp];
191 drv->unsol_event(codec, res);