From: yangbo lu Date: Thu, 7 Dec 2017 08:36:15 +0000 (+0800) Subject: soc: fsl: support GUTS driver for ls1012a/ls1046a X-Git-Tag: v4.16-rc1~98^2~2^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ea0acfd0724007be4e368aca9dc29e384bf2330;p=thirdparty%2Fkernel%2Flinux.git soc: fsl: support GUTS driver for ls1012a/ls1046a This patch is to add compatible strings "fsl,ls1021a-dcfg" and "fsl,ls1043a-dcfg" into device match table of GUTS driver. Signed-off-by: Yangbo Lu Signed-off-by: Li Yang --- diff --git a/drivers/soc/fsl/guts.c b/drivers/soc/fsl/guts.c index d89a6a80c8ef3..d98de2c766594 100644 --- a/drivers/soc/fsl/guts.c +++ b/drivers/soc/fsl/guts.c @@ -214,6 +214,8 @@ static const struct of_device_id fsl_guts_of_match[] = { { .compatible = "fsl,ls1043a-dcfg", }, { .compatible = "fsl,ls2080a-dcfg", }, { .compatible = "fsl,ls1088a-dcfg", }, + { .compatible = "fsl,ls1012a-dcfg", }, + { .compatible = "fsl,ls1046a-dcfg", }, {} }; MODULE_DEVICE_TABLE(of, fsl_guts_of_match);