diff options
| -rw-r--r-- | drivers/soc/imx/soc-imx8.c | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/drivers/soc/imx/soc-imx8.c b/drivers/soc/imx/soc-imx8.c index 964ff84edea4..719e1f189ebf 100644 --- a/drivers/soc/imx/soc-imx8.c +++ b/drivers/soc/imx/soc-imx8.c @@ -142,10 +142,16 @@ static const struct imx8_soc_data imx8mn_soc_data = {  	.soc_revision = imx8mm_soc_revision,  }; +static const struct imx8_soc_data imx8mp_soc_data = { +	.name = "i.MX8MP", +	.soc_revision = imx8mm_soc_revision, +}; +  static const struct of_device_id imx8_soc_match[] = {  	{ .compatible = "fsl,imx8mq", .data = &imx8mq_soc_data, },  	{ .compatible = "fsl,imx8mm", .data = &imx8mm_soc_data, },  	{ .compatible = "fsl,imx8mn", .data = &imx8mn_soc_data, }, +	{ .compatible = "fsl,imx8mp", .data = &imx8mp_soc_data, },  	{ }  }; | 
