From: David S. Miller Date: Fri, 11 Dec 2009 10:05:05 +0000 (-0800) Subject: sparc64: Fix clock event multiplier printf format. X-Git-Tag: v2.6.33-rc1~80^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7466bd3caab6bd1d0095de957affbacd02ca58a7;p=pandora-kernel.git sparc64: Fix clock event multiplier printf format. The type got changed to u32, so %lx generated warnings (and thus build failure on sparc64) Stephen Rothwell fixed it like so: - printk("clockevent: mult[%lx] shift[%d]\n", + printk("clockevent: mult[%ux] shift[%d]\n", But that's not a valid transformation, we now get: clockevent: mult[51539607x] shift[32] in the logs. Fix it to use the correct plain "%x" instead. Signed-off-by: David S. Miller --- Reading git-diff-tree failed