Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[media] radio-si470x-i2c: fix a warning on ia64

on ia64, those warnings appear:
drivers/media/radio/si470x/radio-si470x-i2c.c:470:12: warning: 'si470x_i2c_suspend' defined but not used [-Wunused-function]
drivers/media/radio/si470x/radio-si470x-i2c.c:487:12: warning: 'si470x_i2c_resume' defined but not used [-Wunused-function]
They're caused because the PM logic uses this define:
#define SET_SYSTEM_SLEEP_PM_OPS()
With is only defined for CONFIG_PM_SLEEP.
So, change the logic there to test for CONFIG_PM_SLEEP, instead of
CONFIG_PM.

Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Reviewed-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>

+2 -2
+2 -2
drivers/media/radio/si470x/radio-si470x-i2c.c
··· 463 463 } 464 464 465 465 466 - #ifdef CONFIG_PM 466 + #ifdef CONFIG_PM_SLEEP 467 467 /* 468 468 * si470x_i2c_suspend - suspend the device 469 469 */ ··· 509 509 .driver = { 510 510 .name = "si470x", 511 511 .owner = THIS_MODULE, 512 - #ifdef CONFIG_PM 512 + #ifdef CONFIG_PM_SLEEP 513 513 .pm = &si470x_i2c_pm, 514 514 #endif 515 515 },