Commit ca6f2d7fafd2d48b2f6943f5c6787beaec2014d0

Authored by Paul Mundt
1 parent d2d69a3ab2

sh: pfc: Fixup type mismatch in debug printks.

!!value works out to an int while we were still using %ld, so fix this up
and shut gcc up.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -71,7 +71,7 @@
71 71  
72 72 pos = dr->reg_width - (in_pos + 1);
73 73  
74   - pr_debug("write_bit addr = %lx, value = %ld, pos = %ld, "
  74 + pr_debug("write_bit addr = %lx, value = %d, pos = %ld, "
75 75 "r_width = %ld\n",
76 76 dr->reg, !!value, pos, dr->reg_width);
77 77