From: Andrew Lunn Date: Thu, 8 Mar 2018 20:21:36 +0000 (+0100) Subject: net: dsa: mv88e6xxx: Fix irq free'ing X-Git-Tag: for-linus-20180413~64^2~236 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=b19e5c1515f2ed0adf5806581ac6d0c4dc3e6dff;p=linux-block.git net: dsa: mv88e6xxx: Fix irq free'ing Call the common irq free function, rather than going recursive and blowing away the stack, followed by the machine. Fixes: 294d711ee8c0 ("net: dsa: mv88e6xxx: Poll when no interrupt defined") Signed-off-by: Andrew Lunn Signed-off-by: David S. Miller --- diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index cfd53632a655..bd3ee84770c7 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -360,7 +360,7 @@ static void mv88e6xxx_g1_irq_free_common(struct mv88e6xxx_chip *chip) static void mv88e6xxx_g1_irq_free(struct mv88e6xxx_chip *chip) { - mv88e6xxx_g1_irq_free(chip); + mv88e6xxx_g1_irq_free_common(chip); free_irq(chip->irq, chip); }