summaryrefslogtreecommitdiff
path: root/drivers/staging/gdm72xx
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-18 01:33:02 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-18 01:33:02 (GMT)
commit75533a038632fbbd180c9f6621783aabfeeccf5c (patch)
tree708581bb2b5ba669de4dd04a108c7a329f904e82 /drivers/staging/gdm72xx
parent75f2a4ead5d5890ada9c2663a70fb58613c0d9f2 (diff)
downloadlinux-75533a038632fbbd180c9f6621783aabfeeccf5c.tar.xz
staging: gdm72xx: fix build errors
This fixes the build errors in the dev_dbg() fixes in a previous patch. Reported-by: kbuild test robot <fengguang.wu@intel.com> To: Michalis Pappas <mpappas@fastmail.fm> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gdm72xx')
-rw-r--r--drivers/staging/gdm72xx/gdm_sdio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/gdm72xx/gdm_sdio.c b/drivers/staging/gdm72xx/gdm_sdio.c
index a741c31..7a0a0f2 100644
--- a/drivers/staging/gdm72xx/gdm_sdio.c
+++ b/drivers/staging/gdm72xx/gdm_sdio.c
@@ -278,7 +278,7 @@ static void send_sdu(struct sdio_func *func, struct tx_cxt *tx)
spin_unlock_irqrestore(&tx->lock, flags);
- dev_dbg(func->dev, "sdio_send: %*ph\n", aggr_len - TYPE_A_HEADER_SIZE,
+ dev_dbg(&func->dev, "sdio_send: %*ph\n", aggr_len - TYPE_A_HEADER_SIZE,
tx->sdu_buf + TYPE_A_HEADER_SIZE);
for (pos = TYPE_A_HEADER_SIZE; pos < aggr_len; pos += TX_CHUNK_SIZE) {
@@ -314,7 +314,7 @@ static void send_hci(struct sdio_func *func, struct tx_cxt *tx,
{
unsigned long flags;
- dev_dbg(func->dev, "sdio_send: %*ph\n", t->len - TYPE_A_HEADER_SIZE,
+ dev_dbg(&func->dev, "sdio_send: %*ph\n", t->len - TYPE_A_HEADER_SIZE,
t->buf + TYPE_A_HEADER_SIZE);
send_sdio_pkt(func, t->buf, t->len);
@@ -548,7 +548,7 @@ static void gdm_sdio_irq(struct sdio_func *func)
}
end_io:
- dev_dbg(func->dev, "sdio_receive: %*ph\n", len, rx->rx_buf);
+ dev_dbg(&func->dev, "sdio_receive: %*ph\n", len, rx->rx_buf);
len = control_sdu_tx_flow(sdev, rx->rx_buf, len);