Skip to content

Commit dc24b75

Browse files
superm1linusw
authored andcommitted
pinctrl: amd: Fix newline declaration in debugfs output
Currently the debugfs output for pinctrl-amd puts the first line combined with "GPIO bank". This makes it a little harder to process as the file needs to be manually corrected for the mistake. Change this to be a new line character instead. Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Link: https://lore.kernel.org/r/20220722220810.28894-1-mario.limonciello@amd.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
1 parent 53dd418 commit dc24b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/pinctrl/pinctrl-amd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ static void amd_gpio_dbg_show(struct seq_file *s, struct gpio_chip *gc)
223223
char *debounce_enable;
224224

225225
for (bank = 0; bank < gpio_dev->hwbank_num; bank++) {
226-
seq_printf(s, "GPIO bank%d\t", bank);
226+
seq_printf(s, "GPIO bank%d\n", bank);
227227

228228
switch (bank) {
229229
case 0:

0 commit comments

Comments
 (0)