mirror of
https://github.com/torvalds/linux.git
synced 2024-11-24 21:21:41 +00:00
iio: health/afe4403: mark suspend/resume functions __maybe_unused
The newly added afe4403 driver implements suspend/resume using the
SIMPLE_DEV_PM_OPS() macro, which leaves out references to the actual
functions when CONFIG_PM is disabled, causing a harmless warning:
health/afe4403.c:509:12: error: 'afe4403_suspend' defined but not used
health/afe4403.c:530:12: error: 'afe4403_resume' defined but not used
This marks the functions as __maybe_unused so we don't get those
warnings.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: eec96d1e2d
("iio: health: Add driver for the TI AFE4403 heart monitor")
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
This commit is contained in:
parent
f56293c75b
commit
9e8be75e27
@ -506,7 +506,7 @@ static const struct of_device_id afe4403_of_match[] = {
|
||||
MODULE_DEVICE_TABLE(of, afe4403_of_match);
|
||||
#endif
|
||||
|
||||
static int afe4403_suspend(struct device *dev)
|
||||
static int __maybe_unused afe4403_suspend(struct device *dev)
|
||||
{
|
||||
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
||||
struct afe4403_data *afe = iio_priv(indio_dev);
|
||||
@ -527,7 +527,7 @@ static int afe4403_suspend(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int afe4403_resume(struct device *dev)
|
||||
static int __maybe_unused afe4403_resume(struct device *dev)
|
||||
{
|
||||
struct iio_dev *indio_dev = dev_to_iio_dev(dev);
|
||||
struct afe4403_data *afe = iio_priv(indio_dev);
|
||||
|
Loading…
Reference in New Issue
Block a user