aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorRogério Brito <rbrito@ime.usp.br>2011-02-02 22:42:05 -0500
committerGustavo F. Padovan <padovan@profusion.mobi>2011-02-07 22:40:08 -0500
commit84f0e17f78471857104a20dfc57711409f68d7bf (patch)
treef4f1e73f449b7b1d2d63616832e8191bfd2495de /drivers/bluetooth
parentd37f50e19094862a5d60d79637d6f4dbdc42f4f1 (diff)
Bluetooth: ath3k: Avoid duplication of code
In commit 86e09287e4f8c81831b4d4118a48597565f0d21b, to reduce memory usage, the functions of the ath3k module were rewritten to release the firmware blob after it has been loaded (successfully or not). The resuting code has some redundancy and the compiler can potentially produce better code if we omit a function call that is unconditionally executed in ,---- | if (ath3k_load_firmware(udev, firmware)) { | release_firmware(firmware); | return -EIO; | } | release_firmware(firmware); | | return 0; | } `---- It may also be argued that the rewritten code becomes easier to read, and also to see the code coverage of the snippet in question. Signed-off-by: Rogério Brito <rbrito@ime.usp.br> Cc: Alexander Holler <holler@ahsoftware.de> Cc: "Gustavo F. Padovan" <padovan@profusion.mobi> Cc: Miguel Ojeda <miguel.ojeda.sandonis@gmail.com> Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/ath3k.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c
index 333c21289d97..41dadacd3d15 100644
--- a/drivers/bluetooth/ath3k.c
+++ b/drivers/bluetooth/ath3k.c
@@ -108,6 +108,7 @@ static int ath3k_probe(struct usb_interface *intf,
108{ 108{
109 const struct firmware *firmware; 109 const struct firmware *firmware;
110 struct usb_device *udev = interface_to_usbdev(intf); 110 struct usb_device *udev = interface_to_usbdev(intf);
111 int ret;
111 112
112 BT_DBG("intf %p id %p", intf, id); 113 BT_DBG("intf %p id %p", intf, id);
113 114
@@ -118,13 +119,10 @@ static int ath3k_probe(struct usb_interface *intf,
118 return -EIO; 119 return -EIO;
119 } 120 }
120 121
121 if (ath3k_load_firmware(udev, firmware)) { 122 ret = ath3k_load_firmware(udev, firmware);
122 release_firmware(firmware);
123 return -EIO;
124 }
125 release_firmware(firmware); 123 release_firmware(firmware);
126 124
127 return 0; 125 return ret;
128} 126}
129 127
130static void ath3k_disconnect(struct usb_interface *intf) 128static void ath3k_disconnect(struct usb_interface *intf)