# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
#                  ChangeSet    1.657   -> 1.658  
#        include/linux/usb.h    1.34    -> 1.35   
#       drivers/usb/core/hub.c  1.26    -> 1.27   
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 02/05/23      [EMAIL PROTECTED]  1.658
# usb.h #include dependancies and whitespace cleanup
# --------------------------------------------
#
diff -Nru a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
--- a/drivers/usb/core/hub.c    Thu May 23 10:13:58 2002
+++ b/drivers/usb/core/hub.c    Thu May 23 10:13:58 2002
@@ -17,6 +17,7 @@
 #include <linux/list.h>
 #include <linux/slab.h>
 #include <linux/smp_lock.h>
+#include <linux/ioctl.h>
 #ifdef CONFIG_USB_DEBUG
        #define DEBUG
 #else
diff -Nru a/include/linux/usb.h b/include/linux/usb.h
--- a/include/linux/usb.h       Thu May 23 10:13:58 2002
+++ b/include/linux/usb.h       Thu May 23 10:13:58 2002
@@ -1,9 +1,6 @@
 #ifndef __LINUX_USB_H
 #define __LINUX_USB_H
 
-#include <linux/device.h>
-#include <linux/errno.h>
-
 /* USB constants */
 
 /*
@@ -19,8 +16,8 @@
 #define USB_CLASS_MASS_STORAGE         8
 #define USB_CLASS_HUB                  9
 #define USB_CLASS_CDC_DATA             0x0a
-#define USB_CLASS_CSCID                0x0b /* chip+ smart card */
-#define USB_CLASS_CONTENT_SEC          0x0d /* content security */
+#define USB_CLASS_CSCID                        0x0b    /* chip+ smart card */
+#define USB_CLASS_CONTENT_SEC          0x0d    /* content security */
 #define USB_CLASS_APP_SPEC             0xfe
 #define USB_CLASS_VENDOR_SPEC          0xff
 
@@ -63,23 +60,23 @@
 /*
  * USB Packet IDs (PIDs)
  */
-#define USB_PID_UNDEF_0                        0xf0
-#define USB_PID_OUT                            0xe1
-#define USB_PID_ACK                            0xd2
-#define USB_PID_DATA0                          0xc3
-#define USB_PID_PING                           0xb4    /* USB 2.0 */
-#define USB_PID_SOF                            0xa5
-#define USB_PID_NYET                           0x96    /* USB 2.0 */
-#define USB_PID_DATA2                          0x87    /* USB 2.0 */
-#define USB_PID_SPLIT                          0x78    /* USB 2.0 */
-#define USB_PID_IN                             0x69
-#define USB_PID_NAK                            0x5a
-#define USB_PID_DATA1                          0x4b
-#define USB_PID_PREAMBLE                       0x3c    /* Token mode */
-#define USB_PID_ERR                            0x3c    /* USB 2.0: handshake mode */
-#define USB_PID_SETUP                          0x2d
-#define USB_PID_STALL                          0x1e
-#define USB_PID_MDATA                          0x0f    /* USB 2.0 */
+#define USB_PID_UNDEF_0                        0xf0
+#define USB_PID_OUT                    0xe1
+#define USB_PID_ACK                    0xd2
+#define USB_PID_DATA0                  0xc3
+#define USB_PID_PING                   0xb4    /* USB 2.0 */
+#define USB_PID_SOF                    0xa5
+#define USB_PID_NYET                   0x96    /* USB 2.0 */
+#define USB_PID_DATA2                  0x87    /* USB 2.0 */
+#define USB_PID_SPLIT                  0x78    /* USB 2.0 */
+#define USB_PID_IN                     0x69
+#define USB_PID_NAK                    0x5a
+#define USB_PID_DATA1                  0x4b
+#define USB_PID_PREAMBLE               0x3c    /* Token mode */
+#define USB_PID_ERR                    0x3c    /* USB 2.0: handshake mode */
+#define USB_PID_SETUP                  0x2d
+#define USB_PID_STALL                  0x1e
+#define USB_PID_MDATA                  0x0f    /* USB 2.0 */
 
 /*
  * Standard requests
@@ -96,19 +93,17 @@
 #define USB_REQ_SET_INTERFACE          0x0B
 #define USB_REQ_SYNCH_FRAME            0x0C
 
+#define USB_MAJOR                      180
+
 
 #ifdef __KERNEL__
 
-#include <linux/types.h>
-#include <linux/ioctl.h>
-#include <linux/version.h>
-#include <linux/sched.h>
-#include <linux/delay.h>
-#include <linux/interrupt.h>   /* for in_interrupt() */
 #include <linux/config.h>
-#include <linux/list.h>
+#include <linux/delay.h>       /* for mdelay() */
+#include <linux/interrupt.h>   /* for in_interrupt() */
+#include <linux/list.h>                /* for struct list_head */
+#include <linux/device.h>      /* for struct device */
 
-#define USB_MAJOR 180
 
 static __inline__ void wait_ms(unsigned int ms)
 {
@@ -184,11 +179,11 @@
 #define USB_DT_ENDPOINT_AUDIO_SIZE     9       /* Audio extension */
 
 /* most of these maximums are arbitrary */
-#define USB_MAXCONFIG          8
-#define USB_ALTSETTINGALLOC     4
-#define USB_MAXALTSETTING      128  /* Hard limit */
-#define USB_MAXINTERFACES      32
-#define USB_MAXENDPOINTS       32   /* Hard limit */
+#define USB_MAXCONFIG                  8
+#define USB_ALTSETTINGALLOC            4
+#define USB_MAXALTSETTING              128     /* Hard limit */
+#define USB_MAXINTERFACES              32
+#define USB_MAXENDPOINTS               32      /* Hard limit */
 
 /* All standard descriptors have these 2 fields in common */
 struct usb_descriptor_header {
@@ -226,7 +221,7 @@
        __u8  bSynchAddress     __attribute__ ((packed));
 
        /* the rest is internal to the Linux implementation */
-       unsigned char *extra;   /* Extra descriptors */
+       unsigned char *extra;   /* Extra descriptors */
        int extralen;
 };
 
@@ -243,9 +238,9 @@
        __u8  iInterface        __attribute__ ((packed));
 
        /* the rest is internal to the Linux implementation */
-       struct usb_endpoint_descriptor *endpoint;
+       struct usb_endpoint_descriptor *endpoint;
 
-       unsigned char *extra;   /* Extra descriptors */
+       unsigned char *extra;   /* Extra descriptors */
        int extralen;
 };
 
@@ -254,7 +249,7 @@
 
        int act_altsetting;             /* active alternate setting */
        int num_altsetting;             /* number of alternate settings */
-       int max_altsetting;             /* total memory allocated */
+       int max_altsetting;             /* total memory allocated */
  
        struct usb_driver *driver;      /* driver */
        struct device dev;              /* interface specific device info */
@@ -281,7 +276,7 @@
        /* the rest is internal to the Linux implementation */
        struct usb_interface *interface;
 
-       unsigned char *extra;   /* Extra descriptors */
+       unsigned char *extra;   /* Extra descriptors */
        int extralen;
 };
 
@@ -334,12 +329,12 @@
        char *bus_name;                 /* stable id (PCI slot_name etc) */
 
 #ifdef DEVNUM_ROUND_ROBIN
-       int devnum_next;                /* Next open device number in round-robin 
allocation */
+       int devnum_next;                /* Next open device number in round-robin 
+allocation */
 #endif /* DEVNUM_ROUND_ROBIN */
 
-       struct usb_devmap devmap;       /* device address allocation map */
-       struct usb_operations *op;      /* Operations (specific to the HC) */
-       struct usb_device *root_hub;    /* Root hub */
+       struct usb_devmap devmap;       /* device address allocation map */
+       struct usb_operations *op;      /* Operations (specific to the HC) */
+       struct usb_device *root_hub;    /* Root hub */
        struct list_head bus_list;      /* list of busses */
        void *hcpriv;                   /* Host Controller private data */
 
@@ -408,7 +403,7 @@
 
        int have_langid;                /* whether string_langid is valid yet */
        int string_langid;              /* language ID for strings */
-  
+
        void *hcpriv;                   /* Host Controller private data */
        
        struct list_head filelist;
@@ -467,7 +462,7 @@
  * in host controller driver modules, does not change these path identifers;
  * neither does rebooting or re-enumerating.  These are more useful identifiers
  * than changeable ("unstable") ones like bus numbers or device addresses.
- * 
+ *
  * With a partial exception for devices connected to USB 2.0 root hubs, these
  * identifiers are also predictable:  so long as the device tree isn't changed,
  * plugging any USB device into a given hub port always gives it the same path.
@@ -492,7 +487,7 @@
  * The third probe() parameter will point to a matching entry from this
  * table.  (Null value reserved.)  Use the driver_data field for each
  * match to hold information tied to that match:  device quirks, etc.
- * 
+ *
  * Terminate the driver's table with an all-zeroes entry.
  * Use the flag values to control which fields are compared.
  */
@@ -743,12 +738,12 @@
  *
  * FIXME should be URB_* flags
  */
-#define USB_DISABLE_SPD         0x0001
-#define USB_ISO_ASAP            0x0002
-#define USB_ASYNC_UNLINK        0x0008
-#define USB_QUEUE_BULK          0x0010
+#define USB_DISABLE_SPD                0x0001
+#define USB_ISO_ASAP           0x0002
+#define USB_ASYNC_UNLINK       0x0008
+#define USB_QUEUE_BULK         0x0010
 #define USB_NO_FSBR            0x0020
-#define USB_ZERO_PACKET         0x0040  /* Finish bulk OUTs with short packet */
+#define USB_ZERO_PACKET                0x0040  /* Finish bulk OUTs with short packet 
+*/
 #define URB_NO_INTERRUPT       0x0080  /* HINT: no non-error interrupt needed */
                                        /* ... less overhead for QUEUE_BULK */
 #define USB_TIMEOUT_KILLED     0x1000  /* only set by HCD! */
@@ -914,12 +909,12 @@
        unsigned int transfer_flags;    /* (in) USB_DISABLE_SPD | ...*/
        void *transfer_buffer;          /* (in) associated data buffer */
        int transfer_buffer_length;     /* (in) data buffer length */
-       int actual_length;              /* (return) actual transfer length */
+       int actual_length;              /* (return) actual transfer length */
        int bandwidth;                  /* bandwidth for INT/ISO request */
        unsigned char *setup_packet;    /* (in) setup packet (control only) */
        int start_frame;                /* (modify) start frame (INT/ISO) */
        int number_of_packets;          /* (in) number of ISO packets */
-       int interval;                   /* (in) transfer interval (INT/ISO) */
+       int interval;                   /* (in) transfer interval (INT/ISO) */
        int error_count;                /* (return) number of ISO errors */
        int timeout;                    /* (in) timeout, in jiffies */
        void *context;                  /* (in) context for completion */
@@ -980,7 +975,6 @@
                                      int buffer_length,
                                      usb_complete_t complete,
                                      void *context)
-                                     
 {
        spin_lock_init(&urb->lock);
        urb->dev = dev;
@@ -990,7 +984,7 @@
        urb->complete = complete;
        urb->context = context;
 }
-    
+
 /**
  * usb_fill_int_urb - macro to help initialize a interrupt urb
  * @urb: pointer to the urb to initialize.
@@ -1080,12 +1074,12 @@
  * they typically complete within a few frames (msec) after they're issued
  */
 #ifdef CONFIG_USB_LONG_TIMEOUT
-#define USB_CTRL_GET_TIMEOUT 4
+#define USB_CTRL_GET_TIMEOUT   4
 #else
-#define USB_CTRL_GET_TIMEOUT 3
+#define USB_CTRL_GET_TIMEOUT   3
 #endif
 
-#define USB_CTRL_SET_TIMEOUT 3
+#define USB_CTRL_SET_TIMEOUT   3
 
 /* -------------------------------------------------------------------------- */
 

_______________________________________________________________

Don't miss the 2002 Sprint PCS Application Developer's Conference
August 25-28 in Las Vegas -- http://devcon.sprintpcs.com/adp/index.cfm

_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to