| 333 | #define PRM_RSTCTRL_RESET 0x2 |
| 334 | |
| 335 | static void |
| 336 | omap4_prcm_reset(void) |
| 337 | { |
| 338 | uint32_t reg; |
| 339 | |
| 340 | ti_prcm_read_4(ti_prcm_sc->dev, PRM_RSTCTRL, ®); |
| 341 | reg = reg | PRM_RSTCTRL_RESET; |
| 342 | ti_prcm_write_4(ti_prcm_sc->dev, PRM_RSTCTRL, reg); |
| 343 | ti_prcm_read_4(ti_prcm_sc->dev, PRM_RSTCTRL, ®); |
| 344 | } |
nothing calls this directly
no test coverage detected