diff options
author | Patrick Delaunay <patrick.delaunay@foss.st.com> | 2021-05-21 09:47:32 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-07-23 07:13:25 -0400 |
commit | fea0345992fac2a2b2bd20d72b666ce948c9c99b (patch) | |
tree | 837a5e1bc9305ceef8460282dadf37cc434721f6 /test/cmd/Makefile | |
parent | 4c60fd993a21a285c645c6d46762d8c2992b7dd7 (diff) | |
download | u-boot-fea0345992fac2a2b2bd20d72b666ce948c9c99b.tar.gz |
cmd: pinmux: support pin name in status command
Allow pin name parameter for pimux staus command,
as gpio command to get status of one pin.
The possible usage of the command is:
> pinmux dev pinctrl
> pinmux status
> pinmux status -a
> pinmux status <pin-name>
Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/cmd/Makefile')
-rw-r--r-- | test/cmd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/cmd/Makefile b/test/cmd/Makefile index 2cfe43a6bd..a59adb1e6d 100644 --- a/test/cmd/Makefile +++ b/test/cmd/Makefile @@ -8,5 +8,6 @@ endif obj-y += mem.o obj-$(CONFIG_CMD_ADDRMAP) += addrmap.o obj-$(CONFIG_CMD_MEM_SEARCH) += mem_search.o +obj-$(CONFIG_CMD_PINMUX) += pinmux.o obj-$(CONFIG_CMD_PWM) += pwm.o obj-$(CONFIG_CMD_SETEXPR) += setexpr.o |