Lines Matching refs:rc
123 int rc; in hda_tegra_suspend() local
125 rc = pm_runtime_force_suspend(dev); in hda_tegra_suspend()
126 if (rc < 0) in hda_tegra_suspend()
127 return rc; in hda_tegra_suspend()
136 int rc; in hda_tegra_resume() local
138 rc = pm_runtime_force_resume(dev); in hda_tegra_resume()
139 if (rc < 0) in hda_tegra_resume()
140 return rc; in hda_tegra_resume()
170 int rc; in hda_tegra_runtime_resume() local
173 rc = reset_control_assert(hda->reset); in hda_tegra_runtime_resume()
174 if (rc) in hda_tegra_runtime_resume()
175 return rc; in hda_tegra_runtime_resume()
178 rc = clk_bulk_prepare_enable(hda->nclocks, hda->clocks); in hda_tegra_runtime_resume()
179 if (rc != 0) in hda_tegra_runtime_resume()
180 return rc; in hda_tegra_runtime_resume()
190 rc = reset_control_deassert(hda->reset); in hda_tegra_runtime_resume()
191 if (rc) in hda_tegra_runtime_resume()
192 return rc; in hda_tegra_runtime_resume()