net: ieee802154: adf7242: Fix bug if defined DEBUG
authorMichael Hennerich <michael.hennerich@analog.com>
Tue, 28 Nov 2017 12:53:12 +0000 (13:53 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 19 Mar 2018 07:42:49 +0000 (08:42 +0100)
[ Upstream commit 388b3b2b03701f3b3c10975c272892d7f78080df ]

This fixes undefined reference to struct adf7242_local *lp in
case DEBUG is defined.

Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Stefan Schmidt <stefan@osg.samsung.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/ieee802154/adf7242.c

index 3e4c8b21403c81daf699e5463db44f33f198f807..46b42de13d76f5063d323f40db5f4bf57414399b 100644 (file)
@@ -888,7 +888,7 @@ static const struct ieee802154_ops adf7242_ops = {
        .set_cca_ed_level = adf7242_set_cca_ed_level,
 };
 
-static void adf7242_debug(u8 irq1)
+static void adf7242_debug(struct adf7242_local *lp, u8 irq1)
 {
 #ifdef DEBUG
        u8 stat;
@@ -932,7 +932,7 @@ static irqreturn_t adf7242_isr(int irq, void *data)
                dev_err(&lp->spi->dev, "%s :ERROR IRQ1 = 0x%X\n",
                        __func__, irq1);
 
-       adf7242_debug(irq1);
+       adf7242_debug(lp, irq1);
 
        xmit = test_bit(FLAG_XMIT, &lp->flags);