diff options
author | Sourav Poddar <sourav.poddar@ti.com> | 2013-08-27 12:41:20 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-27 14:30:20 +0100 |
commit | e1432d30cb245f562d495043a58476e7c3b4358e (patch) | |
tree | a463f51ba242389feab79f77affe078ec578c112 /drivers/spi/spi-ti-qspi.c | |
parent | 70e2e9761a580cc9ef84be69dac2279dd6c2c72f (diff) | |
download | blackbird-obmc-linux-e1432d30cb245f562d495043a58476e7c3b4358e.tar.gz blackbird-obmc-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) { |