Lines Matching refs:cell
307 const struct mfd_cell *cell = mfd_get_cell(dev); in tmio_hw_init() local
310 if (cell->enable) { in tmio_hw_init()
311 ret = cell->enable(dev); in tmio_hw_init()
351 const struct mfd_cell *cell = mfd_get_cell(dev); in tmio_hw_stop() local
354 if (cell->disable) in tmio_hw_stop()
355 cell->disable(dev); in tmio_hw_stop()
466 const struct mfd_cell *cell = mfd_get_cell(dev); in tmio_suspend() local
468 if (cell->suspend) in tmio_suspend()
469 cell->suspend(dev); in tmio_suspend()
477 const struct mfd_cell *cell = mfd_get_cell(dev); in tmio_resume() local
484 if (cell->resume) in tmio_resume()
485 cell->resume(dev); in tmio_resume()