Fix bcm47xx GPIO dirin/dirout API return codes.
[openwrt.git] / target / linux / brcm47xx / patches-2.6.28 / 260-ohci-set-dma-mask.patch
1 diff --git a/drivers/usb/host/ohci-ssb.c b/drivers/usb/host/ohci-ssb.c
2 --- a/drivers/usb/host/ohci-ssb.c
3 +++ b/drivers/usb/host/ohci-ssb.c
4 @@ -159,6 +159,11 @@ static int ssb_ohci_attach(struct ssb_device *dev)
5 else
6 ssb_device_enable(dev, 0);
7
8 + /*
9 + * Set dma mask - 32 bit mask is just an assumption
10 + */
11 + if (ssb_dma_set_mask(dev, DMA_32BIT_MASK))
12 + return -EOPNOTSUPP;
13
14 hcd = usb_create_hcd(&ssb_ohci_hc_driver, dev->dev,
15 dev_name(dev->dev));
This page took 0.04882 seconds and 5 git commands to generate.