Browse Source

pinctrl: cherryview: Drop ctrlX prefix from the pin debugfs output

Printing the prefix does not provide any additional information. In
addition this makes the output look more consistent with pinctrl-intel.c.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Mika Westerberg 8 years ago
parent
commit
684373eaa9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/pinctrl/intel/pinctrl-cherryview.c

+ 1 - 1
drivers/pinctrl/intel/pinctrl-cherryview.c

@@ -762,7 +762,7 @@ static void chv_pin_dbg_show(struct pinctrl_dev *pctldev, struct seq_file *s,
 		seq_printf(s, "mode %d ", mode);
 		seq_printf(s, "mode %d ", mode);
 	}
 	}
 
 
-	seq_printf(s, "ctrl0 0x%08x ctrl1 0x%08x", ctrl0, ctrl1);
+	seq_printf(s, "0x%08x 0x%08x", ctrl0, ctrl1);
 
 
 	if (locked)
 	if (locked)
 		seq_puts(s, " [LOCKED]");
 		seq_puts(s, " [LOCKED]");