aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorPavel Machek <pavel@suse.cz>2008-04-19 21:13:40 -0400
committerDavid S. Miller <davem@davemloft.net>2008-04-19 21:13:40 -0400
commita8827113abb5bd1506d9be78115950d213d9a071 (patch)
treed9cb94e8f93b7d6568c0229fb8108ecab7416406 /drivers
parent41588ba1ae166eaba0a70abf2d7ff064ad9331d3 (diff)
hci_usb: do not initialize static variables to 0
hci_usb: do not initialize static variables to 0. Signed-off-by: Pavel Machek <pavel@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/bluetooth/hci_usb.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/drivers/bluetooth/hci_usb.c b/drivers/bluetooth/hci_usb.c
index 8b884f87d8b7..99a714ac244b 100644
--- a/drivers/bluetooth/hci_usb.c
+++ b/drivers/bluetooth/hci_usb.c
@@ -62,13 +62,13 @@
62#define URB_ZERO_PACKET 0 62#define URB_ZERO_PACKET 0
63#endif 63#endif
64 64
65static int ignore = 0; 65static int ignore;
66static int ignore_dga = 0; 66static int ignore_dga;
67static int ignore_csr = 0; 67static int ignore_csr;
68static int ignore_sniffer = 0; 68static int ignore_sniffer;
69static int disable_scofix = 0; 69static int disable_scofix;
70static int force_scofix = 0; 70static int force_scofix;
71static int reset = 0; 71static int reset;
72 72
73#ifdef CONFIG_BT_HCIUSB_SCO 73#ifdef CONFIG_BT_HCIUSB_SCO
74static int isoc = 2; 74static int isoc = 2;