diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2013-04-21 23:02:19 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2013-04-23 02:39:31 -0400 |
commit | ebd004e4edd5628617c0faed11162b8a095ad852 (patch) | |
tree | eec4ba5a86ce5e14b94be8653e47ddd2703a1cff /drivers/macintosh/smu.c | |
parent | 28d170abad3d6dfbe7309c0097d7de8a51c6b779 (diff) |
powerpc/pmac/smu: Use %*ph to print small buffers
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'drivers/macintosh/smu.c')
-rw-r--r-- | drivers/macintosh/smu.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/macintosh/smu.c b/drivers/macintosh/smu.c index 9c6b96414862..b3b2d36c009e 100644 --- a/drivers/macintosh/smu.c +++ b/drivers/macintosh/smu.c | |||
@@ -120,11 +120,7 @@ static void smu_start_cmd(void) | |||
120 | 120 | ||
121 | DPRINTK("SMU: starting cmd %x, %d bytes data\n", cmd->cmd, | 121 | DPRINTK("SMU: starting cmd %x, %d bytes data\n", cmd->cmd, |
122 | cmd->data_len); | 122 | cmd->data_len); |
123 | DPRINTK("SMU: data buffer: %02x %02x %02x %02x %02x %02x %02x %02x\n", | 123 | DPRINTK("SMU: data buffer: %8ph\n", cmd->data_buf); |
124 | ((u8 *)cmd->data_buf)[0], ((u8 *)cmd->data_buf)[1], | ||
125 | ((u8 *)cmd->data_buf)[2], ((u8 *)cmd->data_buf)[3], | ||
126 | ((u8 *)cmd->data_buf)[4], ((u8 *)cmd->data_buf)[5], | ||
127 | ((u8 *)cmd->data_buf)[6], ((u8 *)cmd->data_buf)[7]); | ||
128 | 124 | ||
129 | /* Fill the SMU command buffer */ | 125 | /* Fill the SMU command buffer */ |
130 | smu->cmd_buf->cmd = cmd->cmd; | 126 | smu->cmd_buf->cmd = cmd->cmd; |