diff options
author | Christophe Ricard <christophe.ricard@gmail.com> | 2015-03-23 22:29:58 +0100 |
---|---|---|
committer | Peter Huewe <peterhuewe@gmx.de> | 2015-03-27 02:50:43 +0100 |
commit | 1018bc268864b20c1ae7b0bc5c5c396ee6d33fe3 (patch) | |
tree | d8e580ad1b18f8a17710f4e239b2349cc9c07f19 /drivers/char/tpm | |
parent | 7216ebc51bdd62517be6878dd37555ff428a80c9 (diff) | |
download | blackbird-op-linux-1018bc268864b20c1ae7b0bc5c5c396ee6d33fe3.tar.gz blackbird-op-linux-1018bc268864b20c1ae7b0bc5c5c396ee6d33fe3.zip |
tpm/st33zp24/spi: Add missing device table for spi phy.
MODULE_DEVICE_TABLE is missing in spi phy in case CONFIG_OF is not set.
Reviewed-by: Jason Gunthorpe <jgunthorpe@obsidianresearch.com>
Signed-off-by: Christophe Ricard <christophe-h.ricard@st.com>
Signed-off-by: Peter Huewe <peterhuewe@gmx.de>
Diffstat (limited to 'drivers/char/tpm')
-rw-r--r-- | drivers/char/tpm/st33zp24/spi.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/char/tpm/st33zp24/spi.c b/drivers/char/tpm/st33zp24/spi.c index 7f4a5a46f0df..f0184a1b0c1c 100644 --- a/drivers/char/tpm/st33zp24/spi.c +++ b/drivers/char/tpm/st33zp24/spi.c @@ -362,6 +362,12 @@ static int tpm_st33_spi_remove(struct spi_device *dev) return st33zp24_remove(chip); } +static const struct spi_device_id st33zp24_spi_id[] = { + {TPM_ST33_SPI, 0}, + {} +}; +MODULE_DEVICE_TABLE(spi, st33zp24_spi_id); + #ifdef CONFIG_OF static const struct of_device_id of_st33zp24_spi_match[] = { { .compatible = "st,st33zp24-spi", }, @@ -382,6 +388,7 @@ static struct spi_driver tpm_st33_spi_driver = { }, .probe = tpm_st33_spi_probe, .remove = tpm_st33_spi_remove, + .id_table = st33zp24_spi_id, }; module_spi_driver(tpm_st33_spi_driver); |