diff options
Diffstat (limited to 'drivers/crypto/ux500/hash')
-rw-r--r-- | drivers/crypto/ux500/hash/hash_core.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/crypto/ux500/hash/hash_core.c b/drivers/crypto/ux500/hash/hash_core.c index cf5508967539..3b8f661d0edf 100644 --- a/drivers/crypto/ux500/hash/hash_core.c +++ b/drivers/crypto/ux500/hash/hash_core.c | |||
@@ -1961,6 +1961,11 @@ static int ux500_hash_resume(struct device *dev) | |||
1961 | 1961 | ||
1962 | static SIMPLE_DEV_PM_OPS(ux500_hash_pm, ux500_hash_suspend, ux500_hash_resume); | 1962 | static SIMPLE_DEV_PM_OPS(ux500_hash_pm, ux500_hash_suspend, ux500_hash_resume); |
1963 | 1963 | ||
1964 | static const struct of_device_id ux500_hash_match[] = { | ||
1965 | { .compatible = "stericsson,ux500-hash" }, | ||
1966 | { }, | ||
1967 | }; | ||
1968 | |||
1964 | static struct platform_driver hash_driver = { | 1969 | static struct platform_driver hash_driver = { |
1965 | .probe = ux500_hash_probe, | 1970 | .probe = ux500_hash_probe, |
1966 | .remove = ux500_hash_remove, | 1971 | .remove = ux500_hash_remove, |
@@ -1968,6 +1973,7 @@ static struct platform_driver hash_driver = { | |||
1968 | .driver = { | 1973 | .driver = { |
1969 | .owner = THIS_MODULE, | 1974 | .owner = THIS_MODULE, |
1970 | .name = "hash1", | 1975 | .name = "hash1", |
1976 | .of_match_table = ux500_hash_match, | ||
1971 | .pm = &ux500_hash_pm, | 1977 | .pm = &ux500_hash_pm, |
1972 | } | 1978 | } |
1973 | }; | 1979 | }; |