aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bluetooth
diff options
context:
space:
mode:
authorMaxim Zhukov <mussitantesmortem@gmail.com>2018-02-05 00:09:44 +0300
committerMarcel Holtmann <marcel@holtmann.org>2018-02-07 09:46:09 +0100
commitb3baa2428dece073f7158b2eb616dc69a759ea8e (patch)
tree3cbb6d2e282a1ddfcfe04cac0f87d1d97f351b4d /drivers/bluetooth
parentBluetooth: ath3k: replace hardcode numbers with define (diff)
downloadlinux-dev-b3baa2428dece073f7158b2eb616dc69a759ea8e.tar.xz
linux-dev-b3baa2428dece073f7158b2eb616dc69a759ea8e.zip
Bluetooth: ath3k: do not init variables
Do not need to initialize variables, because further on the code they fall into the snprintf. Signed-off-by: Maxim Zhukov <mussitantesmortem@gmail.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'drivers/bluetooth')
-rw-r--r--drivers/bluetooth/ath3k.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/bluetooth/ath3k.c b/drivers/bluetooth/ath3k.c
index 0a5cfea44529..b16c01a0b6d4 100644
--- a/drivers/bluetooth/ath3k.c
+++ b/drivers/bluetooth/ath3k.c
@@ -399,7 +399,7 @@ static int ath3k_set_normal_mode(struct usb_device *udev)
static int ath3k_load_patch(struct usb_device *udev)
{
unsigned char fw_state;
- char filename[ATH3K_NAME_LEN] = {0};
+ char filename[ATH3K_NAME_LEN];
const struct firmware *firmware;
struct ath3k_version fw_version;
__u32 pt_rom_version, pt_build_version;
@@ -452,7 +452,7 @@ static int ath3k_load_patch(struct usb_device *udev)
static int ath3k_load_syscfg(struct usb_device *udev)
{
unsigned char fw_state;
- char filename[ATH3K_NAME_LEN] = {0};
+ char filename[ATH3K_NAME_LEN];
const struct firmware *firmware;
struct ath3k_version fw_version;
int clk_value, ret;