[PATCH] scsi: lpfc: add depends CPU_FREQ to SCSI_LPFC configury

From: trix
Date: Thu Jul 23 2020 - 10:02:00 EST


From: Tom Rix <trix@xxxxxxxxxx>

A compile error

drivers/scsi/lpfc/lpfc_sli.c:7329:26: error: implicit
declaration of function âget_cpu_idle_timeâ; did you
mean âset_cpu_activeâ? [-Werror=implicit-function-declaration]
idle_stat->prev_idle = get_cpu_idle_time(i, &wall, 1);

lpfc_init_idle_stat_hb depends on CPU_FREQ

So add depends CPU_FREQ to the configury.

Signed-off-by: Tom Rix <trix@xxxxxxxxxx>
---
drivers/scsi/Kconfig | 1 +
1 file changed, 1 insertion(+)

diff --git a/drivers/scsi/Kconfig b/drivers/scsi/Kconfig
index 571473a58f98..004dcda07d49 100644
--- a/drivers/scsi/Kconfig
+++ b/drivers/scsi/Kconfig
@@ -1157,6 +1157,7 @@ config SCSI_LPFC
depends on SCSI_FC_ATTRS
depends on NVME_TARGET_FC || NVME_TARGET_FC=n
depends on NVME_FC || NVME_FC=n
+ depends on CPU_FREQ
select CRC_T10DIF
help
This lpfc driver supports the Emulex LightPulse
--
2.18.1