From: Fabio Estevam Date: Sun, 13 Apr 2014 15:09:05 +0000 (-0300) Subject: pinctrl: pinctrl-imx: Print the mux_mode field in hex format X-Git-Tag: next-20140428~11^2^2~19 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=08b519534e8c9a2bbf26db3e2dbab81e40b91705;p=karo-tx-linux.git pinctrl: pinctrl-imx: Print the mux_mode field in hex format With debug enabled we get better readability dumps of the mux_mode register if we use hexadecimal format instead: imx6sl-pinctrl 20e0000.iomuxc: MX6SL_PAD_FEC_REF_CLK: 0x10 0x0001b0a8 Signed-off-by: Fabio Estevam Acked-by: Shawn Guo Signed-off-by: Linus Walleij --- diff --git a/drivers/pinctrl/pinctrl-imx.c b/drivers/pinctrl/pinctrl-imx.c index e118fb121e02..a24448e5d399 100644 --- a/drivers/pinctrl/pinctrl-imx.c +++ b/drivers/pinctrl/pinctrl-imx.c @@ -491,7 +491,7 @@ static int imx_pinctrl_parse_groups(struct device_node *np, pin->mux_mode |= IOMUXC_CONFIG_SION; pin->config = config & ~IMX_PAD_SION; - dev_dbg(info->dev, "%s: %d 0x%08lx", info->pins[pin_id].name, + dev_dbg(info->dev, "%s: 0x%x 0x%08lx", info->pins[pin_id].name, pin->mux_mode, pin->config); }