diff options
author | Dong Aisheng <aisheng.dong@nxp.com> | 2017-03-23 12:53:22 +0800 |
---|---|---|
committer | Shawn Guo <shawnguo@kernel.org> | 2017-03-24 13:43:04 +0800 |
commit | 6e6e339cc185fdd27d476764637b5b3b6738cf04 (patch) | |
tree | ecd59deb0419b081113733053ec66cc4b51b6677 /drivers/soc/imx/gpc.c | |
parent | 5a42d1198901a13ff46e1d13b91a338d74224dbe (diff) |
soc: imx: gpc: fix comment when power up domain
The correct comment should be power up domain.
Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
Signed-off-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Shawn Guo <shawnguo@kernel.org>
Diffstat (limited to 'drivers/soc/imx/gpc.c')
-rw-r--r-- | drivers/soc/imx/gpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/imx/gpc.c b/drivers/soc/imx/gpc.c index 9a2354ea48c9..afb02f9cc231 100644 --- a/drivers/soc/imx/gpc.c +++ b/drivers/soc/imx/gpc.c @@ -104,7 +104,7 @@ static int imx6_pm_domain_power_on(struct generic_pm_domain *genpd) regmap_update_bits(pd->regmap, pd->reg_offs + GPC_PGC_PDN_OFFS, 0x1, 0x1); - /* Read ISO and ISO2SW power down delays */ + /* Read ISO and ISO2SW power up delays */ regmap_read(pd->regmap, pd->reg_offs + GPC_PGC_PUPSCR_OFFS, &val); sw = val & 0x3f; sw2iso = (val >> 8) & 0x3f; |