diff mbox series

scsi: ufs: core: Fix build error: ufshcd_opp_config_clks

Message ID 20231012072051.1517826-1-alessandro.carminati@gmail.com
State New
Headers show
Series scsi: ufs: core: Fix build error: ufshcd_opp_config_clks | expand

Commit Message

Alessandro Carminati (Red Hat) Oct. 12, 2023, 7:20 a.m. UTC
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@gmail.com>
---
 drivers/ufs/core/ufshcd.c | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

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)
 {