diff options
author | Venkatesh Yadav Abbarapu | 2023-09-20 08:30:06 +0530 |
---|---|---|
committer | Michal Simek | 2023-10-09 10:25:32 +0200 |
commit | d0535830643e31d645258ed8eadfa72f0e749436 (patch) | |
tree | 15cf472c0ef8c43570bdf0ecddd582c45e6cfd16 /include/dm | |
parent | ecba4380ad261d25640b71e0d1f53e5261386b6c (diff) |
pinctrl: Increase size of pinmux status buffer
For Xilinx ZynqMP SOC new parameter was added and now it can
set 7 parameters for its pins. Pinmux status command will
print the status of these parameters for each pin. But
current print buffer length is only 80 characters long, increase it
to 90 to print all the parameters without truncation.
Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>
Link: https://lore.kernel.org/r/20230920030006.6488-1-venkatesh.abbarapu@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/pinctrl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dm/pinctrl.h b/include/dm/pinctrl.h index e3e50afeaff..70d8cc5ecac 100644 --- a/include/dm/pinctrl.h +++ b/include/dm/pinctrl.h @@ -7,7 +7,7 @@ #define __PINCTRL_H #define PINNAME_SIZE 10 -#define PINMUX_SIZE 80 +#define PINMUX_SIZE 90 /** * struct pinconf_param - pin config parameters |