Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

+3 -3
+3 -3
drivers/staging/gdm72xx/gdm_sdio.c
··· 278 278 279 279 spin_unlock_irqrestore(&tx->lock, flags); 280 280 281 - dev_dbg(func->dev, "sdio_send: %*ph\n", aggr_len - TYPE_A_HEADER_SIZE, 281 + dev_dbg(&func->dev, "sdio_send: %*ph\n", aggr_len - TYPE_A_HEADER_SIZE, 282 282 tx->sdu_buf + TYPE_A_HEADER_SIZE); 283 283 284 284 for (pos = TYPE_A_HEADER_SIZE; pos < aggr_len; pos += TX_CHUNK_SIZE) { ··· 314 314 { 315 315 unsigned long flags; 316 316 317 - dev_dbg(func->dev, "sdio_send: %*ph\n", t->len - TYPE_A_HEADER_SIZE, 317 + dev_dbg(&func->dev, "sdio_send: %*ph\n", t->len - TYPE_A_HEADER_SIZE, 318 318 t->buf + TYPE_A_HEADER_SIZE); 319 319 320 320 send_sdio_pkt(func, t->buf, t->len); ··· 548 548 } 549 549 550 550 end_io: 551 - dev_dbg(func->dev, "sdio_receive: %*ph\n", len, rx->rx_buf); 551 + dev_dbg(&func->dev, "sdio_receive: %*ph\n", len, rx->rx_buf); 552 552 553 553 len = control_sdu_tx_flow(sdev, rx->rx_buf, len); 554 554