Commit 6170511a authored by Tom Lendacky's avatar Tom Lendacky Committed by Herbert Xu

crypto: ccp - Provide support to autoload CCP driver

Add the necessary module device tables to the platform support to allow
for autoloading of the CCP driver. This will allow for the CCP's hwrng
support to be available without having to manually load the driver. The
module device table entry for the pci support is already present.
Signed-off-by: default avatarTom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent acb33cc5
...@@ -216,6 +216,7 @@ static const struct acpi_device_id ccp_acpi_match[] = { ...@@ -216,6 +216,7 @@ static const struct acpi_device_id ccp_acpi_match[] = {
{ "AMDI0C00", 0 }, { "AMDI0C00", 0 },
{ }, { },
}; };
MODULE_DEVICE_TABLE(acpi, ccp_acpi_match);
#endif #endif
#ifdef CONFIG_OF #ifdef CONFIG_OF
...@@ -223,6 +224,7 @@ static const struct of_device_id ccp_of_match[] = { ...@@ -223,6 +224,7 @@ static const struct of_device_id ccp_of_match[] = {
{ .compatible = "amd,ccp-seattle-v1a" }, { .compatible = "amd,ccp-seattle-v1a" },
{ }, { },
}; };
MODULE_DEVICE_TABLE(of, ccp_of_match);
#endif #endif
static struct platform_driver ccp_platform_driver = { static struct platform_driver ccp_platform_driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment