[PATCH -next] pstore: Add missing MODULE_DEVICE_TABLE

From: Yuyao Lin
Date: Tue Sep 27 2022 - 22:45:35 EST


From: Linyuyao <linyuyao1@xxxxxxxxxx>

This patch adds missing MODULE_DEVICE_TABLE definition which generates
correct modalias for automatic loading of this driver when it is built
as an external module.

Reported-by: Hulk Robot <hulkci@xxxxxxxxxx>
Signed-off-by: Linyuyao <linyuyao1@xxxxxxxxxx>
---
fs/pstore/ram.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
index fefe3d391d3a..b0534ab990d5 100644
--- a/fs/pstore/ram.c
+++ b/fs/pstore/ram.c
@@ -887,6 +887,7 @@ static const struct of_device_id dt_match[] = {
{ .compatible = "ramoops" },
{}
};
+MODULE_DEVICE_TABLE(of, dt_match);

static struct platform_driver ramoops_driver = {
.probe = ramoops_probe,
--
2.25.1