mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
pinctrl: at91: Tag suspend/resume __maybe_unused
Tag the suspend/resume callbacks as __maybe_unused to silence complaints from the build robots. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
b2ea28b885
commit
a08cbeb1d1
@ -1649,7 +1649,7 @@ static int gpio_irq_set_wake(struct irq_data *d, unsigned state)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int at91_gpio_suspend(struct device *dev)
|
||||
static int __maybe_unused at91_gpio_suspend(struct device *dev)
|
||||
{
|
||||
struct at91_gpio_chip *at91_chip = dev_get_drvdata(dev);
|
||||
void __iomem *pio = at91_chip->regbase;
|
||||
@ -1667,7 +1667,7 @@ static int at91_gpio_suspend(struct device *dev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int at91_gpio_resume(struct device *dev)
|
||||
static int __maybe_unused at91_gpio_resume(struct device *dev)
|
||||
{
|
||||
struct at91_gpio_chip *at91_chip = dev_get_drvdata(dev);
|
||||
void __iomem *pio = at91_chip->regbase;
|
||||
|
Loading…
Reference in New Issue
Block a user