Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca6f2d7f authored by Paul Mundt's avatar Paul Mundt
Browse files

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: default avatarPaul Mundt <lethal@linux-sh.org>
parent d2d69a3a
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -71,7 +71,7 @@ static void gpio_write_bit(struct pinmux_data_reg *dr,


	pos = dr->reg_width - (in_pos + 1);
	pos = dr->reg_width - (in_pos + 1);


	pr_debug("write_bit addr = %lx, value = %ld, pos = %ld, "
	pr_debug("write_bit addr = %lx, value = %d, pos = %ld, "
		 "r_width = %ld\n",
		 "r_width = %ld\n",
		 dr->reg, !!value, pos, dr->reg_width);
		 dr->reg, !!value, pos, dr->reg_width);