[PATCH] scsi: ufs: core: Fix build error: ufshcd_opp_config_clks

From: Alessandro Carminati (Red Hat)
Date: Thu Oct 12 2023 - 03:28:37 EST


Building linux-6.6-rc3 with this patchset applied and the following
configuration:

CONFIG_SCSI_UFSHCD=m
CONFIG_SCSI_UFS_BSG=y

I got:

scripts/mod/modpost -M -m -a -o Module.symvers -T modules.order vmlinux.o
ERROR: modpost: "ufshcd_opp_config_clks" [drivers/ufs/host/ufshcd-pltfrm.ko] undefined!
make[2]: *** [scripts/Makefile.modpost:145: Module.symvers] Error 1
make[1]: *** [/home/alessandro/src/linux-6.6-rc3/Makefile:1865: modpost] Error 2
make: *** [Makefile:234: __sub-make] Error 2

I needed to add an export symbol to have the build complete

Signed-off-by: Alessandro Carminati (Red Hat) <alessandro.carminati@xxxxxxxxx>
---
drivers/ufs/core/ufshcd.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/ufs/core/ufshcd.c b/drivers/ufs/core/ufshcd.c
index ccd7fcd18355..c0631c37c3d1 100644
--- a/drivers/ufs/core/ufshcd.c
+++ b/drivers/ufs/core/ufshcd.c
@@ -1098,6 +1098,7 @@ int ufshcd_opp_config_clks(struct device *dev, struct opp_table *opp_table,

return 0;
}
+EXPORT_SYMBOL_GPL(ufshcd_opp_config_clks);

static int ufshcd_opp_set_rate(struct ufs_hba *hba, unsigned long freq)
{
--
2.34.1