aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux/usbdevice_fs.h
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2019-06-19 16:36:16 +1000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-06-19 16:56:14 +0200
commitb119deca1e016e37614117f56f74461eac559af5 (patch)
treef2cca530f114d78075664a5783c4a294a7df225d /include/uapi/linux/usbdevice_fs.h
parentusb: host: fotg2: add device tree probing (diff)
downloadlinux-dev-b119deca1e016e37614117f56f74461eac559af5.tar.xz
linux-dev-b119deca1e016e37614117f56f74461eac559af5.zip
USB: fix types in uapi include
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/uapi/linux/usbdevice_fs.h')
-rw-r--r--include/uapi/linux/usbdevice_fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/uapi/linux/usbdevice_fs.h b/include/uapi/linux/usbdevice_fs.h
index 4b267fe3776e..78efe870c2b7 100644
--- a/include/uapi/linux/usbdevice_fs.h
+++ b/include/uapi/linux/usbdevice_fs.h
@@ -85,11 +85,11 @@ struct usbdevfs_conninfo_ex {
/* kernel, the device is connected to. */
__u32 devnum; /* Device address on the bus. */
__u32 speed; /* USB_SPEED_* constants from ch9.h */
- u8 num_ports; /* Number of ports the device is connected */
+ __u8 num_ports; /* Number of ports the device is connected */
/* to on the way to the root hub. It may */
/* be bigger than size of 'ports' array so */
/* userspace can detect overflows. */
- u8 ports[7]; /* List of ports on the way from the root */
+ __u8 ports[7]; /* List of ports on the way from the root */
/* hub to the device. Current limit in */
/* USB specification is 7 tiers (root hub, */
/* 5 intermediate hubs, device), which */