Commit b9531885 authored by Claudiu Beznea's avatar Claudiu Beznea Committed by Herbert Xu

hwrng: atmel - use __maybe_unused and pm_ptr() for pm ops

Use __maybe_unused and pm_ptr() for pm ops.
Signed-off-by: default avatarClaudiu Beznea <claudiu.beznea@microchip.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 9fbd8b30
...@@ -155,8 +155,7 @@ static int atmel_trng_remove(struct platform_device *pdev) ...@@ -155,8 +155,7 @@ static int atmel_trng_remove(struct platform_device *pdev)
return 0; return 0;
} }
#ifdef CONFIG_PM static int __maybe_unused atmel_trng_suspend(struct device *dev)
static int atmel_trng_suspend(struct device *dev)
{ {
struct atmel_trng *trng = dev_get_drvdata(dev); struct atmel_trng *trng = dev_get_drvdata(dev);
...@@ -165,18 +164,17 @@ static int atmel_trng_suspend(struct device *dev) ...@@ -165,18 +164,17 @@ static int atmel_trng_suspend(struct device *dev)
return 0; return 0;
} }
static int atmel_trng_resume(struct device *dev) static int __maybe_unused atmel_trng_resume(struct device *dev)
{ {
struct atmel_trng *trng = dev_get_drvdata(dev); struct atmel_trng *trng = dev_get_drvdata(dev);
return atmel_trng_init(trng); return atmel_trng_init(trng);
} }
static const struct dev_pm_ops atmel_trng_pm_ops = { static const struct dev_pm_ops __maybe_unused atmel_trng_pm_ops = {
.suspend = atmel_trng_suspend, .suspend = atmel_trng_suspend,
.resume = atmel_trng_resume, .resume = atmel_trng_resume,
}; };
#endif /* CONFIG_PM */
static const struct atmel_trng_data at91sam9g45_config = { static const struct atmel_trng_data at91sam9g45_config = {
.has_half_rate = false, .has_half_rate = false,
...@@ -204,9 +202,7 @@ static struct platform_driver atmel_trng_driver = { ...@@ -204,9 +202,7 @@ static struct platform_driver atmel_trng_driver = {
.remove = atmel_trng_remove, .remove = atmel_trng_remove,
.driver = { .driver = {
.name = "atmel-trng", .name = "atmel-trng",
#ifdef CONFIG_PM .pm = pm_ptr(&atmel_trng_pm_ops),
.pm = &atmel_trng_pm_ops,
#endif /* CONFIG_PM */
.of_match_table = atmel_trng_dt_ids, .of_match_table = atmel_trng_dt_ids,
}, },
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment