CC: upgrade kernel to 3.18.68
[15.05/openwrt.git] / target / linux / bcm53xx / patches-3.18 / 082-01-USB-bcma-remove-chip-id-check.patch
1 From 7e4a4da67255d92620ba59b461b5bc295db28dae Mon Sep 17 00:00:00 2001
2 From: Hauke Mehrtens <hauke@hauke-m.de>
3 Date: Thu, 11 Jun 2015 22:57:35 +0200
4 Subject: [PATCH] USB: bcma: remove chip id check
5
6 I have never seen any bcma device with an USB host core which was not a
7 SoC, the bcma devices have an USB device core with a different core id.
8 Some SoC have IDs with 47XX and 53XX in decimal form which would be
9 rejected by this check. Instead of fixing this check just remove it.
10
11 Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
12 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 ---
14  drivers/usb/host/bcma-hcd.c | 5 -----
15  1 file changed, 5 deletions(-)
16
17 --- a/drivers/usb/host/bcma-hcd.c
18 +++ b/drivers/usb/host/bcma-hcd.c
19 @@ -214,16 +214,11 @@ err_alloc:
20  static int bcma_hcd_probe(struct bcma_device *dev)
21  {
22         int err;
23 -       u16 chipid_top;
24         u32 ohci_addr;
25         struct bcma_hcd_device *usb_dev;
26         struct bcma_chipinfo *chipinfo;
27  
28         chipinfo = &dev->bus->chipinfo;
29 -       /* USBcores are only connected on embedded devices. */
30 -       chipid_top = (chipinfo->id & 0xFF00);
31 -       if (chipid_top != 0x4700 && chipid_top != 0x5300)
32 -               return -ENODEV;
33  
34         /* TODO: Probably need checks here; is the core connected? */
35