crypto: marvell - Add a platform_device_id table
authorBoris BREZILLON <boris.brezillon@free-electrons.com>
Wed, 11 Oct 2017 13:16:17 +0000 (15:16 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 3 Nov 2017 13:50:47 +0000 (21:50 +0800)
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>
drivers/crypto/marvell/cesa.c

index b657e7c..1135cac 100644 (file)
@@ -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,