]> git.karo-electronics.de Git - karo-tx-linux.git/commit
iio: health/afe4403: mark suspend/resume functions __maybe_unused
authorArnd Bergmann <arnd@arndb.de>
Mon, 15 Feb 2016 09:02:51 +0000 (10:02 +0100)
committerJonathan Cameron <jic23@kernel.org>
Wed, 17 Feb 2016 19:35:28 +0000 (19:35 +0000)
commit9e8be75e277a46ebbed4c37f1ee4b46ffeba5a08
tree0ee4c7d66ac1f98a4d8eb0ca297cc161ab885098
parentf56293c75bc3a2d406ff7797470a1d996af27186
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: eec96d1e2d31 ("iio: health: Add driver for the TI AFE4403 heart monitor")
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/health/afe4403.c