Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: usbip: userspace: usbip_list.c: modify exportable device output

Change spacing to provide better indentation for readability.

Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

authored by

matt mooney and committed by
Greg Kroah-Hartman
fcedd169 dffb9649

+4 -4
+4 -4
drivers/staging/usbip/userspace/src/usbip_list.c
··· 100 100 usbip_names_get_class(class_name, sizeof(class_name), 101 101 udev.bDeviceClass, udev.bDeviceSubClass, 102 102 udev.bDeviceProtocol); 103 - printf("%8s: %s\n", udev.busid, product_name); 104 - printf("%8s: %s\n", "", udev.path); 105 - printf("%8s: %s\n", "", class_name); 103 + printf("%11s: %s\n", udev.busid, product_name); 104 + printf("%11s: %s\n", "", udev.path); 105 + printf("%11s: %s\n", "", class_name); 106 106 107 107 for (j = 0; j < udev.bNumInterfaces; j++) { 108 108 rc = usbip_net_recv(sockfd, &uintf, sizeof(uintf)); ··· 118 118 uintf.bInterfaceClass, 119 119 uintf.bInterfaceSubClass, 120 120 uintf.bInterfaceProtocol); 121 - printf("%8s: %2d - %s\n", "", j, class_name); 121 + printf("%11s: %2d - %s\n", "", j, class_name); 122 122 } 123 123 printf("\n"); 124 124 }