Commit 7ff1d28c authored by Jonathan Cameron's avatar Jonathan Cameron
Browse files

iio: adc: mt6577_auxadc: Switch to DEFINE_SIMPLE_DEV_PM_OPS() and pm_sleep_ptr()



Using these newer macros allows the compiler to remove the unused
structure and functions when !CONFIG_PM_SLEEP + removes the need to
mark pm functions __maybe_unused.

Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
Cc: Zhiyong Tao <zhiyong.tao@mediatek.com>
Cc: Hui Liu <hui.liu@mediatek.com>
Reviewed-by: default avatarPaul Cercueil <paul@crapouillou.net>
Link: https://lore.kernel.org/r/20220621202719.13644-7-jic23@kernel.org
parent 50737998
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -215,7 +215,7 @@ static const struct iio_info mt6577_auxadc_info = {
	.read_raw = &mt6577_auxadc_read_raw,
};

static int __maybe_unused mt6577_auxadc_resume(struct device *dev)
static int mt6577_auxadc_resume(struct device *dev)
{
	struct iio_dev *indio_dev = dev_get_drvdata(dev);
	struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
@@ -234,7 +234,7 @@ static int __maybe_unused mt6577_auxadc_resume(struct device *dev)
	return 0;
}

static int __maybe_unused mt6577_auxadc_suspend(struct device *dev)
static int mt6577_auxadc_suspend(struct device *dev)
{
	struct iio_dev *indio_dev = dev_get_drvdata(dev);
	struct mt6577_auxadc_device *adc_dev = iio_priv(indio_dev);
@@ -330,7 +330,7 @@ static int mt6577_auxadc_remove(struct platform_device *pdev)
	return 0;
}

static SIMPLE_DEV_PM_OPS(mt6577_auxadc_pm_ops,
static DEFINE_SIMPLE_DEV_PM_OPS(mt6577_auxadc_pm_ops,
				mt6577_auxadc_suspend,
				mt6577_auxadc_resume);

@@ -349,7 +349,7 @@ static struct platform_driver mt6577_auxadc_driver = {
	.driver = {
		.name   = "mt6577-auxadc",
		.of_match_table = mt6577_auxadc_of_match,
		.pm = &mt6577_auxadc_pm_ops,
		.pm = pm_sleep_ptr(&mt6577_auxadc_pm_ops),
	},
	.probe	= mt6577_auxadc_probe,
	.remove	= mt6577_auxadc_remove,