Commit 75533a03 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

staging: gdm72xx: fix build errors

This fixes the build errors in the dev_dbg() fixes in a previous patch.
Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
To: Michalis Pappas <mpappas@fastmail.fm>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 75f2a4ea
...@@ -278,7 +278,7 @@ static void send_sdu(struct sdio_func *func, struct tx_cxt *tx) ...@@ -278,7 +278,7 @@ static void send_sdu(struct sdio_func *func, struct tx_cxt *tx)
spin_unlock_irqrestore(&tx->lock, flags); 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); tx->sdu_buf + TYPE_A_HEADER_SIZE);
for (pos = TYPE_A_HEADER_SIZE; pos < aggr_len; pos += TX_CHUNK_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, ...@@ -314,7 +314,7 @@ static void send_hci(struct sdio_func *func, struct tx_cxt *tx,
{ {
unsigned long flags; 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); t->buf + TYPE_A_HEADER_SIZE);
send_sdio_pkt(func, t->buf, t->len); send_sdio_pkt(func, t->buf, t->len);
...@@ -548,7 +548,7 @@ static void gdm_sdio_irq(struct sdio_func *func) ...@@ -548,7 +548,7 @@ static void gdm_sdio_irq(struct sdio_func *func)
} }
end_io: 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); len = control_sdu_tx_flow(sdev, rx->rx_buf, len);
......
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