56e962d7935a25969c832a8fad02ae7b2315412a
[openwrt/staging/mkresin.git] / target / linux / bcm53xx / patches-3.18 / 180-USB-bcma-remove-chip-id-check.patch
1 From baf3d128e5bdf9d322539609133a15b493b0c2ef 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 ---
13 drivers/usb/host/bcma-hcd.c | 5 -----
14 1 file changed, 5 deletions(-)
15
16 diff --git a/drivers/usb/host/bcma-hcd.c b/drivers/usb/host/bcma-hcd.c
17 index cd6d0af..080587e 100644
18 --- a/drivers/usb/host/bcma-hcd.c
19 +++ b/drivers/usb/host/bcma-hcd.c
20 @@ -214,16 +214,11 @@ err_alloc:
21 static int bcma_hcd_probe(struct bcma_device *dev)
22 {
23 int err;
24 - u16 chipid_top;
25 u32 ohci_addr;
26 struct bcma_hcd_device *usb_dev;
27 struct bcma_chipinfo *chipinfo;
28
29 chipinfo = &dev->bus->chipinfo;
30 - /* USBcores are only connected on embedded devices. */
31 - chipid_top = (chipinfo->id & 0xFF00);
32 - if (chipid_top != 0x4700 && chipid_top != 0x5300)
33 - return -ENODEV;
34
35 /* TODO: Probably need checks here; is the core connected? */
36
37 --
38 1.8.4.5
39