Commit 87997195 authored by Hauke Mehrtens's avatar Hauke Mehrtens Committed by Greg Kroah-Hartman

USB: ssb: fix error handling in ssb_hcd_create_pdev()

This patch makes bcma_hcd_create_pdev() not return NULL, but a prober
error code in case of an error.
Signed-off-by: default avatarHauke Mehrtens <hauke@hauke-m.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e3e64f3f
...@@ -105,7 +105,7 @@ static struct platform_device *ssb_hcd_create_pdev(struct ssb_device *dev, bool ...@@ -105,7 +105,7 @@ static struct platform_device *ssb_hcd_create_pdev(struct ssb_device *dev, bool
{ {
struct platform_device *hci_dev; struct platform_device *hci_dev;
struct resource hci_res[2]; struct resource hci_res[2];
int ret = -ENOMEM; int ret;
memset(hci_res, 0, sizeof(hci_res)); memset(hci_res, 0, sizeof(hci_res));
...@@ -119,7 +119,7 @@ static struct platform_device *ssb_hcd_create_pdev(struct ssb_device *dev, bool ...@@ -119,7 +119,7 @@ static struct platform_device *ssb_hcd_create_pdev(struct ssb_device *dev, bool
hci_dev = platform_device_alloc(ohci ? "ohci-platform" : hci_dev = platform_device_alloc(ohci ? "ohci-platform" :
"ehci-platform" , 0); "ehci-platform" , 0);
if (!hci_dev) if (!hci_dev)
return NULL; return ERR_PTR(-ENOMEM);
hci_dev->dev.parent = dev->dev; hci_dev->dev.parent = dev->dev;
hci_dev->dev.dma_mask = &hci_dev->dev.coherent_dma_mask; hci_dev->dev.dma_mask = &hci_dev->dev.coherent_dma_mask;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment