]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
pinctrl: ti: iodelay: Lower the priority of prints
authorNishanth Menon <nm@ti.com>
Tue, 15 Jan 2019 08:20:59 +0000 (10:20 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 21 Jan 2019 13:38:40 +0000 (14:38 +0100)
Dont print every single iodelay register configuration - this is just
plain noise. Since this is useful debug information, just lower to debug

Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/ti/pinctrl-ti-iodelay.c

index a4bc506a01a3f336fd4e7e56a3f8ff68505139c3..76f9083d9c63751e7e5f84c71ced6cee1e4a96c9 100644 (file)
@@ -263,9 +263,9 @@ static int ti_iodelay_pinconf_set(struct ti_iodelay_device *iod,
        reg_val |= reg->unlock_val << __ffs(reg->lock_mask);
        r = regmap_update_bits(iod->regmap, cfg->offset, reg_mask, reg_val);
 
-       dev_info(dev, "Set reg 0x%x Delay(a: %d g: %d), Elements(C=%d F=%d)0x%x\n",
-                cfg->offset, cfg->a_delay, cfg->g_delay, c_elements,
-                f_elements, reg_val);
+       dev_dbg(dev, "Set reg 0x%x Delay(a: %d g: %d), Elements(C=%d F=%d)0x%x\n",
+               cfg->offset, cfg->a_delay, cfg->g_delay, c_elements,
+               f_elements, reg_val);
 
        return r;
 }