diff options
author | Simon Glass <sjg@chromium.org> | 2020-05-10 11:40:04 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-05-18 18:36:57 -0400 |
commit | 3c7dded8e179ee213c8267c892720b84a7a59fd5 (patch) | |
tree | d3d66399bc1c2221e81d22bda8b9a3ffe0026ddf /board/freescale/mpc8568mds | |
parent | 09140113108541b95d340f3c7b6ee597d31ccc73 (diff) | |
download | u-boot-3c7dded8e179ee213c8267c892720b84a7a59fd5.tar.gz |
Fix some checkpatch warnings in calls to debug()
Fix up some incorrect code style in calls to functions in the log.h
header, mostly debug().
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/freescale/mpc8568mds')
-rw-r--r-- | board/freescale/mpc8568mds/mpc8568mds.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/freescale/mpc8568mds/mpc8568mds.c b/board/freescale/mpc8568mds/mpc8568mds.c index da97495664..3e804c85c4 100644 --- a/board/freescale/mpc8568mds/mpc8568mds.c +++ b/board/freescale/mpc8568mds/mpc8568mds.c @@ -303,7 +303,7 @@ void pci_init_board(void) porpllsr = in_be32(&gur->porpllsr); io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19; - debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel); + debug(" %s: devdisr=%x, io_sel=%x\n", __func__, devdisr, io_sel); pci_speed = 66666000; pci_32 = 1; |