diff options
author | Sourav Poddar <sourav.poddar@ti.com> | 2013-08-27 09:11:20 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-27 15:30:20 +0200 |
commit | e1432d30cb245f562d495043a58476e7c3b4358e (patch) | |
tree | a463f51ba242389feab79f77affe078ec578c112 /drivers/spi/spi-ti-qspi.c | |
parent | spi/qspi: Add dual/quad spi read support (diff) | |
download | linux-e1432d30cb245f562d495043a58476e7c3b4358e.tar.xz linux-e1432d30cb245f562d495043a58476e7c3b4358e.zip |
spi/qspi: Fix device table entry
Fix module device table entry. Without this, there will
be a build failure while trying to build qspi as a module.
Signed-off-by: Sourav Poddar <sourav.poddar@ti.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi-ti-qspi.c')
-rw-r--r-- | drivers/spi/spi-ti-qspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-ti-qspi.c b/drivers/spi/spi-ti-qspi.c index c07e04170b91..79081d9b3213 100644 --- a/drivers/spi/spi-ti-qspi.c +++ b/drivers/spi/spi-ti-qspi.c @@ -455,7 +455,7 @@ static const struct of_device_id ti_qspi_match[] = { {.compatible = "ti,dra7xxx-qspi" }, {}, }; -MODULE_DEVICE_TABLE(of, dra7xxx_qspi_match); +MODULE_DEVICE_TABLE(of, ti_qspi_match); static int ti_qspi_probe(struct platform_device *pdev) { |