diff options
author | Richard Gong | 2020-02-14 10:00:48 -0600 |
---|---|---|
committer | Moritz Fischer | 2020-04-29 20:37:10 -0700 |
commit | d299253cf5b4e0f21ff1ce1d2f02e5ea634ebcb9 (patch) | |
tree | 3936b6249cec59603f2e9a5cf9f2c7738fdf8d52 /drivers/fpga/stratix10-soc.c | |
parent | 8d6b6bbe6ddec1a37bbdebf5b7a1ad989b510b7f (diff) |
fpga: stratix10-soc: add compatible property value for intel agilex
Add compatible property value so we can reuse FPGA manager driver on
Intel Agilex SoC platform.
Signed-off-by: Richard Gong <richard.gong@intel.com>
Signed-off-by: Moritz Fischer <mdf@kernel.org>
Diffstat (limited to 'drivers/fpga/stratix10-soc.c')
-rw-r--r-- | drivers/fpga/stratix10-soc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/fpga/stratix10-soc.c b/drivers/fpga/stratix10-soc.c index 215d33789c74..bac93d009170 100644 --- a/drivers/fpga/stratix10-soc.c +++ b/drivers/fpga/stratix10-soc.c @@ -482,7 +482,8 @@ static int s10_remove(struct platform_device *pdev) } static const struct of_device_id s10_of_match[] = { - { .compatible = "intel,stratix10-soc-fpga-mgr", }, + {.compatible = "intel,stratix10-soc-fpga-mgr"}, + {.compatible = "intel,agilex-soc-fpga-mgr"}, {}, }; |