OSDN Git Service

pinctrl: pinconf: separate config parameters with commas for debugfs
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 25 May 2016 06:37:27 +0000 (15:37 +0900)
committerLinus Walleij <linus.walleij@linaro.org>
Tue, 31 May 2016 08:29:06 +0000 (10:29 +0200)
commita672eb5e277d2d7ee9b585d468460f9890d2cebc
tree32447e0be304fc432f23026d809c9ec3d9734ee2
parentcd8f61f1e52b33766639e28a042d717d1e069d4f
pinctrl: pinconf: separate config parameters with commas for debugfs

To improve debugfs readability, use commas instead of whitespaces
for separating configuration parameters.

For example, the "pinconf-pins" dump on my board will change as follows:

Without this commit:

 # head -5 pinconf-pins
 Pin config settings per pin
 Format: pin (name): configs
 pin 0 (ED0): input bias pull down output drive strength (8 mA) input enabled
 pin 1 (ED1): input bias pull down output drive strength (8 mA) input enabled
 pin 2 (ED2): input bias pull down output drive strength (8 mA) input enabled

With this commit:

 # head -5 pinconf-pins
 Pin config settings per pin
 Format: pin (name): configs
 pin 0 (ED0): input bias pull down, output drive strength (8 mA), input enabled
 pin 1 (ED1): input bias pull down, output drive strength (8 mA), input enabled
 pin 2 (ED2): input bias pull down, output drive strength (8 mA), input enabled

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinconf-generic.c
drivers/pinctrl/pinconf.c