From 217a6b10703f6c55cf6ae095af47335f2dc344ad Mon Sep 17 00:00:00 2001 From: Roman Leonov Date: Mon, 27 Apr 2026 17:53:02 +0200 Subject: [PATCH] usb: host: shell: rename list_dd command to info Rename list_dd command to simplified info. Signed-off-by: Roman Leonov --- subsys/usb/host/usbh_shell.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/subsys/usb/host/usbh_shell.c b/subsys/usb/host/usbh_shell.c index d26692aeb7ca5..f76d28cd92f72 100644 --- a/subsys/usb/host/usbh_shell.c +++ b/subsys/usb/host/usbh_shell.c @@ -721,7 +721,7 @@ static int cmd_device_list(const struct shell *sh, return 0; } -static int cmd_device_list_dd(const struct shell *sh, +static int cmd_device_info(const struct shell *sh, size_t argc, char **argv) { struct usb_device *udev; @@ -958,13 +958,13 @@ SHELL_STATIC_SUBCMD_SET_CREATE(device_cmds, "" ), cmd_device_list, 1, 0), - SHELL_CMD_ARG(list_dd, NULL, + SHELL_CMD_ARG(info, NULL, SHELL_HELP( - "List descriptors data", + "Print device information", "\n" "addr: Device bus address [dec]\n" ), - cmd_device_list_dd, 2, 0), + cmd_device_info, 2, 0), SHELL_CMD_ARG(address, NULL, SHELL_HELP( "Set device address",