]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
usb: chipidea: remove zero check of hw_ep_max
authorRichard Zhao <richard.zhao@freescale.com>
Tue, 15 May 2012 13:58:18 +0000 (21:58 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 May 2012 15:43:40 +0000 (08:43 -0700)
It's 0 for host only device.

Signed-off-by: Richard Zhao <richard.zhao@freescale.com>
Cc: Marek Vasut <marex@denx.de>
Cc: Alan Stern <stern@rowland.harvard.edu>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Felipe Balbi <balbi@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/chipidea/core.c

index f568b8e86ceec2a5ff589f1ea691e78f805a5775..15e03b308f8ae7c5785e6c9a53c1b4237d9e3091 100644 (file)
@@ -195,7 +195,7 @@ static int hw_device_init(struct ci13xxx *ci, void __iomem *base)
                ffs_nr(DCCPARAMS_DEN);
        ci->hw_ep_max = reg * 2;   /* cache hw ENDPT_MAX */
 
-       if (ci->hw_ep_max == 0 || ci->hw_ep_max > ENDPT_MAX)
+       if (ci->hw_ep_max > ENDPT_MAX)
                return -ENODEV;
 
        dev_dbg(ci->dev, "ChipIdea HDRC found, lpm: %d; cap: %p op: %p\n",