aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth/bcm203x.c
diff options
context:
space:
mode:
authorSyam Sidhardhan <s.syam@samsung.com>2015-12-22 19:30:18 +0530
committerMarcel Holtmann <marcel@holtmann.org>2015-12-22 15:25:33 +0100
commit17722e245b1eed116268338a0a05970bf797ce06 (patch)
tree9dccbb6e1d5b033e135ce9bff6a6d3a1a1ca9994 /drivers/bluetooth/bcm203x.c
parentBluetooth: hci_bcm: Add BCM2E65 ACPI ID (diff)
downloadlinux-dev-17722e245b1eed116268338a0a05970bf797ce06.tar.xz
linux-dev-17722e245b1eed116268338a0a05970bf797ce06.zip
Bluetooth: bcm203x: Remove redundant error message
devm_kzalloc prints its own OOM message upon failure. Signed-off-by: Syam Sidhardhan <s.syam@samsung.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth/bcm203x.c')
-rw-r--r--drivers/bluetooth/bcm203x.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/bluetooth/bcm203x.c b/drivers/bluetooth/bcm203x.c
index 364f82b34d03..5b0ef7bbe8ac 100644
--- a/drivers/bluetooth/bcm203x.c
+++ b/drivers/bluetooth/bcm203x.c
@@ -178,10 +178,8 @@ static int bcm203x_probe(struct usb_interface *intf, const struct usb_device_id
return -ENODEV;
data = devm_kzalloc(&intf->dev, sizeof(*data), GFP_KERNEL);
- if (!data) {
- BT_ERR("Can't allocate memory for data structure");
+ if (!data)
return -ENOMEM;
- }
data->udev = udev;
data->state = BCM203X_LOAD_MINIDRV;