Symbol: dsp_reset
drivers/remoteproc/da8xx_remoteproc.c
138
struct reset_control *dsp_reset = drproc->dsp_reset;
drivers/remoteproc/da8xx_remoteproc.c
156
ret = reset_control_deassert(dsp_reset);
drivers/remoteproc/da8xx_remoteproc.c
172
ret = reset_control_assert(drproc->dsp_reset);
drivers/remoteproc/da8xx_remoteproc.c
250
struct reset_control *dsp_reset;
drivers/remoteproc/da8xx_remoteproc.c
276
dsp_reset = devm_reset_control_get_exclusive(dev, NULL);
drivers/remoteproc/da8xx_remoteproc.c
277
if (IS_ERR(dsp_reset))
drivers/remoteproc/da8xx_remoteproc.c
278
return dev_err_probe(dev, PTR_ERR(dsp_reset), "unable to get reset control\n");
drivers/remoteproc/da8xx_remoteproc.c
298
drproc->dsp_reset = dsp_reset;
drivers/remoteproc/da8xx_remoteproc.c
319
ret = reset_control_assert(dsp_reset);
drivers/remoteproc/da8xx_remoteproc.c
71
struct reset_control *dsp_reset;
sound/hda/codecs/ca0132.c
3559
status = dsp_reset(codec);
sound/hda/codecs/ca0132.c
9001
dsp_reset(codec);
sound/isa/galaxy/galaxy.c
378
err = dsp_reset(galaxy->port);
sound/isa/galaxy/galaxy.c
420
err = dsp_reset(galaxy->port);
sound/pci/pcxhr/pcxhr.h
110
unsigned char dsp_reset; /* copy of PCXHR_DSP_RESET register */
sound/pci/pcxhr/pcxhr_mix22.c
288
mgr->dsp_reset = PCXHR_DSP_RESET_DSP |
sound/pci/pcxhr/pcxhr_mix22.c
291
PCXHR_OUTPB(mgr, PCXHR_DSP_RESET, mgr->dsp_reset);
sound/pci/pcxhr/pcxhr_mix22.c
503
*value = (int)(mgr->dsp_reset & PCXHR_DSP_RESET_GPO_MASK) >>
sound/pci/pcxhr/pcxhr_mix22.c
512
unsigned char reg = mgr->dsp_reset & ~PCXHR_DSP_RESET_GPO_MASK;
sound/pci/pcxhr/pcxhr_mix22.c
518
mgr->dsp_reset = reg;
sound/pci/pcxhr/pcxhr_mix22.c
525
mgr->dsp_reset |= PCXHR_DSP_RESET_SMPTE;
sound/pci/pcxhr/pcxhr_mix22.c
527
mgr->dsp_reset &= ~PCXHR_DSP_RESET_SMPTE;
sound/pci/pcxhr/pcxhr_mix22.c
529
PCXHR_OUTPB(mgr, PCXHR_DSP_RESET, mgr->dsp_reset);