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()
467 const struct mfd_cell *cell = mfd_get_cell(dev); in tmio_suspend() local
469 if (cell->suspend) in tmio_suspend()
470 cell->suspend(dev); in tmio_suspend()
478 const struct mfd_cell *cell = mfd_get_cell(dev); in tmio_resume() local
485 if (cell->resume) in tmio_resume()
486 cell->resume(dev); in tmio_resume()