diff options
author | Sourav Poddar <sourav.poddar@ti.com> | 2013-08-27 19:42:24 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-27 15:44:10 +0100 |
commit | 09222fc33f8e22e81d34a7518e6dd120e4128a11 (patch) | |
tree | ac73266cce967fc2db4b0d7e89163f636c1e401d | |
parent | e1432d30cb245f562d495043a58476e7c3b4358e (diff) |
spi/qspi: Add compatible string for am4372.
Add a compatible string for am4372.
Signed-off-by: Sourav Poddar <sourav.poddar@ti.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r-- | Documentation/devicetree/bindings/spi/ti_qspi.txt | 2 | ||||
-rw-r--r-- | drivers/spi/spi-ti-qspi.c | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/spi/ti_qspi.txt b/Documentation/devicetree/bindings/spi/ti_qspi.txt index 398ef5959772..1f9641ade0b5 100644 --- a/Documentation/devicetree/bindings/spi/ti_qspi.txt +++ b/Documentation/devicetree/bindings/spi/ti_qspi.txt @@ -1,7 +1,7 @@ TI QSPI controller. Required properties: -- compatible : should be "ti,dra7xxx-qspi". +- compatible : should be "ti,dra7xxx-qspi" or "ti,am4372-qspi". - reg: Should contain QSPI registers location and length. - #address-cells, #size-cells : Must be present if the device has sub-nodes - ti,hwmods: Name of the hwmod associated to the QSPI diff --git a/drivers/spi/spi-ti-qspi.c b/drivers/spi/spi-ti-qspi.c index 79081d9b3213..136d71eb6f27 100644 --- a/drivers/spi/spi-ti-qspi.c +++ b/drivers/spi/spi-ti-qspi.c @@ -453,6 +453,7 @@ static int ti_qspi_runtime_resume(struct device *dev) static const struct of_device_id ti_qspi_match[] = { {.compatible = "ti,dra7xxx-qspi" }, + {.compatible = "ti,am4372-qspi" }, {}, }; MODULE_DEVICE_TABLE(of, ti_qspi_match); |