mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-24 17:23:25 -05:00
mfd: atmel-flexcom: Fix compilation warning
Fix "unused variable 'atmel_flexcom_pm_ops' [-Wunused-const-variable]" compilation warning by using __maybe_unused on PM ops. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com> Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com> Signed-off-by: Lee Jones <lee.jones@linaro.org> Link: https://lore.kernel.org/r/20211207111515.814653-1-claudiu.beznea@microchip.com
This commit is contained in:
parent
49be163055
commit
748718bcc0
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ static int __maybe_unused atmel_flexcom_resume_noirq(struct device *dev)
|
|||
return 0;
|
||||
}
|
||||
|
||||
static const struct dev_pm_ops atmel_flexcom_pm_ops = {
|
||||
static const struct dev_pm_ops __maybe_unused atmel_flexcom_pm_ops = {
|
||||
.resume_noirq = atmel_flexcom_resume_noirq,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue