Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/dev/usb USB style. NFC.



details:   https://anonhg.NetBSD.org/src/rev/cd08e279b91c
branches:  trunk
changeset: 991060:cd08e279b91c
user:      skrll <skrll%NetBSD.org@localhost>
date:      Sat Nov 06 06:44:42 2021 +0000

description:
USB style. NFC.

diffstat:

 sys/dev/usb/usb_subr.c |  14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diffs (63 lines):

diff -r de3b2ce32503 -r cd08e279b91c sys/dev/usb/usb_subr.c
--- a/sys/dev/usb/usb_subr.c    Sat Nov 06 06:44:41 2021 +0000
+++ b/sys/dev/usb/usb_subr.c    Sat Nov 06 06:44:42 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usb_subr.c,v 1.268 2021/11/06 06:41:02 skrll Exp $     */
+/*     $NetBSD: usb_subr.c,v 1.269 2021/11/06 06:44:42 skrll Exp $     */
 /*     $FreeBSD: src/sys/dev/usb/usb_subr.c,v 1.18 1999/11/17 22:33:47 n_hibma Exp $   */
 
 /*
@@ -32,7 +32,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: usb_subr.c,v 1.268 2021/11/06 06:41:02 skrll Exp $");
+__KERNEL_RCSID(0, "$NetBSD: usb_subr.c,v 1.269 2021/11/06 06:44:42 skrll Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -362,7 +362,7 @@
 
 usb_endpoint_descriptor_t *
 usbd_find_edesc(usb_config_descriptor_t *cd, int ifaceidx, int altidx,
-               int endptidx)
+    int endptidx)
 {
        char *p = (char *)cd;
        char *end = p + UGETW(cd->wTotalLength);
@@ -1093,7 +1093,7 @@
 
 static usbd_status
 usbd_attachwholedevice(device_t parent, struct usbd_device *dev, int port,
-       int usegeneric)
+    int usegeneric)
 {
        struct usb_attach_arg uaa;
        usb_device_descriptor_t *dd = &dev->ud_ddesc;
@@ -1141,7 +1141,7 @@
 
 static usbd_status
 usbd_attachinterfaces(device_t parent, struct usbd_device *dev,
-                     int port, const int *locators)
+    int port, const int *locators)
 {
        USBHIST_FUNC(); USBHIST_CALLED(usbdebug);
        struct usbif_attach_arg uiaa;
@@ -1235,7 +1235,7 @@
 
 usbd_status
 usbd_probe_and_attach(device_t parent, struct usbd_device *dev,
-                      int port, int addr)
+    int port, int addr)
 {
        USBHIST_FUNC();
        USBHIST_CALLARGS(usbdebug, "trying device specific drivers", 0, 0, 0, 0);
@@ -1305,7 +1305,7 @@
  */
 usbd_status
 usbd_reattach_device(device_t parent, struct usbd_device *dev,
-                     int port, const int *locators)
+    int port, const int *locators)
 {
        int i, loc;
 



Home | Main Index | Thread Index | Old Index