Lines Matching refs:rc
135 int rc; in hda_tegra_suspend() local
137 rc = pm_runtime_force_suspend(dev); in hda_tegra_suspend()
138 if (rc < 0) in hda_tegra_suspend()
139 return rc; in hda_tegra_suspend()
148 int rc; in hda_tegra_resume() local
150 rc = pm_runtime_force_resume(dev); in hda_tegra_resume()
151 if (rc < 0) in hda_tegra_resume()
152 return rc; in hda_tegra_resume()
182 int rc; in hda_tegra_runtime_resume() local
185 rc = reset_control_bulk_assert(hda->nresets, hda->resets); in hda_tegra_runtime_resume()
186 if (rc) in hda_tegra_runtime_resume()
187 return rc; in hda_tegra_runtime_resume()
190 rc = clk_bulk_prepare_enable(hda->nclocks, hda->clocks); in hda_tegra_runtime_resume()
191 if (rc != 0) in hda_tegra_runtime_resume()
192 return rc; in hda_tegra_runtime_resume()
204 rc = reset_control_bulk_deassert(hda->nresets, hda->resets); in hda_tegra_runtime_resume()
205 if (rc) in hda_tegra_runtime_resume()
206 return rc; in hda_tegra_runtime_resume()