mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
pinctrl: intel: Fix compilation warning when !CONFIG_PM_SLEEP
We get following warning when CONFIG_PM_SLEEP is not set warning: ‘intel_gpio_irq_init’ defined but not used [-Wunused-function] Since the function is only called from intel_pinctrl_resume() move it inside CONFIG_PM_SLEEP guard as well. Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
11091fb0a1
commit
f487bbf309
1 changed files with 20 additions and 20 deletions
|
@ -861,26 +861,6 @@ static struct irq_chip intel_gpio_irqchip = {
|
||||||
.irq_set_wake = intel_gpio_irq_wake,
|
.irq_set_wake = intel_gpio_irq_wake,
|
||||||
};
|
};
|
||||||
|
|
||||||
static void intel_gpio_irq_init(struct intel_pinctrl *pctrl)
|
|
||||||
{
|
|
||||||
size_t i;
|
|
||||||
|
|
||||||
for (i = 0; i < pctrl->ncommunities; i++) {
|
|
||||||
const struct intel_community *community;
|
|
||||||
void __iomem *base;
|
|
||||||
unsigned gpp;
|
|
||||||
|
|
||||||
community = &pctrl->communities[i];
|
|
||||||
base = community->regs;
|
|
||||||
|
|
||||||
for (gpp = 0; gpp < community->ngpps; gpp++) {
|
|
||||||
/* Mask and clear all interrupts */
|
|
||||||
writel(0, base + community->ie_offset + gpp * 4);
|
|
||||||
writel(0xffff, base + GPI_IS + gpp * 4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int intel_gpio_probe(struct intel_pinctrl *pctrl, int irq)
|
static int intel_gpio_probe(struct intel_pinctrl *pctrl, int irq)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -1087,6 +1067,26 @@ int intel_pinctrl_suspend(struct device *dev)
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(intel_pinctrl_suspend);
|
EXPORT_SYMBOL_GPL(intel_pinctrl_suspend);
|
||||||
|
|
||||||
|
static void intel_gpio_irq_init(struct intel_pinctrl *pctrl)
|
||||||
|
{
|
||||||
|
size_t i;
|
||||||
|
|
||||||
|
for (i = 0; i < pctrl->ncommunities; i++) {
|
||||||
|
const struct intel_community *community;
|
||||||
|
void __iomem *base;
|
||||||
|
unsigned gpp;
|
||||||
|
|
||||||
|
community = &pctrl->communities[i];
|
||||||
|
base = community->regs;
|
||||||
|
|
||||||
|
for (gpp = 0; gpp < community->ngpps; gpp++) {
|
||||||
|
/* Mask and clear all interrupts */
|
||||||
|
writel(0, base + community->ie_offset + gpp * 4);
|
||||||
|
writel(0xffff, base + GPI_IS + gpp * 4);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
int intel_pinctrl_resume(struct device *dev)
|
int intel_pinctrl_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
struct platform_device *pdev = to_platform_device(dev);
|
struct platform_device *pdev = to_platform_device(dev);
|
||||||
|
|
Loading…
Reference in a new issue