]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
USB: cleanup for previous patches
authorAlan Stern <stern@rowland.harvard.edu>
Thu, 2 Aug 2007 19:04:52 +0000 (15:04 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 12 Oct 2007 21:55:01 +0000 (14:55 -0700)
This patch (as951) cleans up a few loose ends from earlier patches.
Redundant checks for non-NULL urb->dev are removed, as are checks of
urb->dev->bus (which can never be NULL).  Conversely, a check for
non-NULL urb->ep is added to the unlink paths.

A homegrown round-down-to-power-of-2 loop is simplified by using the
ilog2 routine.  The comparison in usb_urb_dir_in() is made more
transparent.

Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/core/hcd.c
drivers/usb/core/urb.c
include/linux/usb.h

index 739c5e0aa3b8c1ee30ff29f022fce582cb063aad..47a055a2acf543911b055d40b407eb21c745f991 100644 (file)
@@ -1074,11 +1074,6 @@ int usb_hcd_unlink_urb (struct urb *urb, int status)
        struct list_head                *tmp;
        int                             retval;
 
-       if (!urb)
-               return -EINVAL;
-       if (!urb->dev || !urb->dev->bus)
-               return -ENODEV;
-
        /*
         * we contend for urb->status with the hcd core,
         * which changes it while returning the urb.
index 1acca8696bcd49caedf0a5434d9271fccf430247..19f5f66c27332ae6f2098ea114b7603874255821 100644 (file)
@@ -3,6 +3,7 @@
 #include <linux/bitops.h>
 #include <linux/slab.h>
 #include <linux/init.h>
+#include <linux/log2.h>
 #include <linux/usb.h>
 #include <linux/wait.h>
 #include "hcd.h"
@@ -441,10 +442,8 @@ int usb_submit_urb(struct urb *urb, gfp_t mem_flags)
                default:
                        return -EINVAL;
                }
-               /* power of two? */
-               while (max > urb->interval)
-                       max >>= 1;
-               urb->interval = max;
+               /* Round down to a power of 2, no more than max */
+               urb->interval = min(max, 1 << ilog2(urb->interval));
        }
 
        return usb_hcd_submit_urb(urb, mem_flags);
@@ -513,8 +512,10 @@ int usb_unlink_urb(struct urb *urb)
 {
        if (!urb)
                return -EINVAL;
-       if (!(urb->dev && urb->dev->bus))
+       if (!urb->dev)
                return -ENODEV;
+       if (!urb->ep)
+               return -EIDRM;
        return usb_hcd_unlink_urb(urb, -ECONNRESET);
 }
 
@@ -541,7 +542,7 @@ int usb_unlink_urb(struct urb *urb)
 void usb_kill_urb(struct urb *urb)
 {
        might_sleep();
-       if (!(urb && urb->dev && urb->dev->bus))
+       if (!(urb && urb->dev && urb->ep))
                return;
        spin_lock_irq(&urb->lock);
        ++urb->reject;
index 019ae963a9fec1f6a755fd87b4721bcb971dc474..a51f34e805727636daa9378d560e4e2adf1a16ff 100644 (file)
@@ -1395,7 +1395,7 @@ extern int usb_wait_anchor_empty_timeout(struct usb_anchor *anchor,
  */
 static inline int usb_urb_dir_in(struct urb *urb)
 {
-       return (urb->transfer_flags & URB_DIR_MASK) != URB_DIR_OUT;
+       return (urb->transfer_flags & URB_DIR_MASK) == URB_DIR_IN;
 }
 
 /**