Searched hist:"9 ef18aa8c0ab5f7824b8380536501859af61265d" (Results 1 – 1 of 1) sorted by relevance
/linux/drivers/mfd/ |
H A D | intel-lpss.c | diff 9ef18aa8c0ab5f7824b8380536501859af61265d Tue May 16 22:27:42 CEST 2023 Arnd Bergmann <arnd@arndb.de> mfd: intel-lpss: Hide suspend/resume functions in #ifdef
When CONFIG_PM is disabled, the prototypes for these two functions are not visible:
drivers/mfd/intel-lpss.c:482:5: error: no previous prototype for 'intel_lpss_suspend' [-Werror=missing-prototypes] 482 | int intel_lpss_suspend(struct device *dev) | ^~~~~~~~~~~~~~~~~~ drivers/mfd/intel-lpss.c:503:5: error: no previous prototype for 'intel_lpss_resume' [-Werror=missing-prototypes] 503 | int intel_lpss_resume(struct device *dev)
Add the same #ifdef around the definition of the unused functions, which avoids the warning and slightly reduces the code size.
Signed-off-by: Arnd Bergmann <arnd@arndb.de> Link: https://lore.kernel.org/r/20230516202746.561111-1-arnd@kernel.org Signed-off-by: Lee Jones <lee@kernel.org>
|