diff options
author | Jason Liu <jason.hui.liu@nxp.com> | 2018-07-25 18:23:47 +0800 |
---|---|---|
committer | Leonard Crestez <leonard.crestez@nxp.com> | 2018-08-24 12:41:33 +0300 |
commit | 416ab95194fcfd20ffe65ded6a6be5ad3f7fcc94 (patch) | |
tree | 146f43736a73730ec06c97868db54903c99467ec /drivers/soc | |
parent | e15e9060ff59d0aa211c6e69018a56ef7547369b (diff) |
MLK-19057 soc: imx8qm: Enable TKT340553_SW_WORKAROUND on i.MX8QM RevB
This patch enabled the TKT340553_SW_WORKAROUND on i.MX8QM RevB
Signed-off-by: Jason Liu <jason.hui.liu@nxp.com>
Reviewed-by: Anson Huang <Anson.Huang@nxp.com>
Diffstat (limited to 'drivers/soc')
-rw-r--r-- | drivers/soc/imx/soc-imx8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/imx/soc-imx8.c b/drivers/soc/imx/soc-imx8.c index 279ac5ade821..2b282697dfd5 100644 --- a/drivers/soc/imx/soc-imx8.c +++ b/drivers/soc/imx/soc-imx8.c @@ -148,7 +148,7 @@ static u32 imx8qm_soc_revision(void) { u32 rev = imx_init_revision_from_scu(); - if (rev == IMX_CHIP_REVISION_1_0) + if (rev == IMX_CHIP_REVISION_1_0 || rev == IMX_CHIP_REVISION_1_1) TKT340553_SW_WORKAROUND = true; return rev; |