mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
spi: spi_bfin5xx build fix
Fix breakage cause by overzealous line wrapping; there should be only one format string. Signed-off-by: Mike Frysinger <vapier.adi@gmail.com> Signed-off-by: Bryan Wu <cooloney@kernel.org> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
ba62b07787
commit
4fb98efacf
1 changed files with 2 additions and 2 deletions
|
@ -713,8 +713,8 @@ static void pump_transfers(unsigned long data)
|
|||
} else {
|
||||
drv_data->len = transfer->len;
|
||||
}
|
||||
dev_dbg(&drv_data->pdev->dev, "transfer: ",
|
||||
"drv_data->write is %p, chip->write is %p, null_wr is %p\n",
|
||||
dev_dbg(&drv_data->pdev->dev,
|
||||
"transfer: drv_data->write is %p, chip->write is %p, null_wr is %p\n",
|
||||
drv_data->write, chip->write, null_writer);
|
||||
|
||||
/* speed and width has been set on per message */
|
||||
|
|
Loading…
Reference in a new issue