Commit 6f8e8ec3 authored by Michael Hennerich's avatar Michael Hennerich Committed by Greg Kroah-Hartman

net: ieee802154: adf7242: Fix bug if defined DEBUG


[ Upstream commit 388b3b2b ]

This fixes undefined reference to struct adf7242_local *lp in
case DEBUG is defined.
Signed-off-by: default avatarMichael Hennerich <michael.hennerich@analog.com>
Signed-off-by: default avatarStefan Schmidt <stefan@osg.samsung.com>
Signed-off-by: default avatarSasha Levin <alexander.levin@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent db699dcd
...@@ -888,7 +888,7 @@ static struct ieee802154_ops adf7242_ops = { ...@@ -888,7 +888,7 @@ static struct ieee802154_ops adf7242_ops = {
.set_cca_ed_level = adf7242_set_cca_ed_level, .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 #ifdef DEBUG
u8 stat; u8 stat;
...@@ -932,7 +932,7 @@ static irqreturn_t adf7242_isr(int irq, void *data) ...@@ -932,7 +932,7 @@ static irqreturn_t adf7242_isr(int irq, void *data)
dev_err(&lp->spi->dev, "%s :ERROR IRQ1 = 0x%X\n", dev_err(&lp->spi->dev, "%s :ERROR IRQ1 = 0x%X\n",
__func__, irq1); __func__, irq1);
adf7242_debug(irq1); adf7242_debug(lp, irq1);
xmit = test_bit(FLAG_XMIT, &lp->flags); xmit = test_bit(FLAG_XMIT, &lp->flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment