Skip to content

Commit 17a8893

Browse files
Uwe Kleine-Königtorvalds
authored andcommitted
cris/arch-v32: cryptocop: print a hex number after a 0x prefix
It makes the result hard to interpret correctly if a base 10 number is prefixed by 0x. So change to a hex number. Link: http://lkml.kernel.org/r/20161026125658.25728-6-u.kleine-koenig@pengutronix.de Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Cc: Mikael Starvik <starvik@axis.com> Cc: Jesper Nilsson <jesper.nilsson@axis.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 9105585 commit 17a8893

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/cris/arch-v32/drivers/cryptocop.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3149,7 +3149,7 @@ static void print_dma_descriptors(struct cryptocop_int_operation *iop)
31493149
printk("print_dma_descriptors start\n");
31503150

31513151
printk("iop:\n");
3152-
printk("\tsid: 0x%lld\n", iop->sid);
3152+
printk("\tsid: 0x%llx\n", iop->sid);
31533153

31543154
printk("\tcdesc_out: 0x%p\n", iop->cdesc_out);
31553155
printk("\tcdesc_in: 0x%p\n", iop->cdesc_in);

0 commit comments

Comments
 (0)