diff options
author | Boris BREZILLON <boris.brezillon@free-electrons.com> | 2017-10-11 15:16:17 +0200 |
---|---|---|
committer | Herbert Xu <herbert@gondor.apana.org.au> | 2017-11-03 21:50:47 +0800 |
commit | 7b0c3d693ce65900dd3c79766185f539fa37a29a (patch) | |
tree | 9b11210a393f37daf4900a79f4863e94e0c6f978 /drivers/crypto | |
parent | 7aacbfcb331ceff3ac43096d563a1f93ed46e35e (diff) | |
download | linux-7b0c3d693ce65900dd3c79766185f539fa37a29a.tar.bz2 |
crypto: marvell - Add a platform_device_id table
Add a platform_device_id table to allow using this driver on orion
platforms that have not been converted to DT.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r-- | drivers/crypto/marvell/cesa.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/crypto/marvell/cesa.c b/drivers/crypto/marvell/cesa.c index b657e7c2107e..1135cac869ac 100644 --- a/drivers/crypto/marvell/cesa.c +++ b/drivers/crypto/marvell/cesa.c @@ -597,9 +597,15 @@ static int mv_cesa_remove(struct platform_device *pdev) return 0; } +static const struct platform_device_id mv_cesa_plat_id_table[] = { + { .name = "mv_crypto" }, +}; +MODULE_DEVICE_TABLE(platform, mv_cesa_plat_id_table); + static struct platform_driver marvell_cesa = { .probe = mv_cesa_probe, .remove = mv_cesa_remove, + .id_table = mv_cesa_plat_id_table, .driver = { .name = "marvell-cesa", .of_match_table = mv_cesa_of_match_table, |