Skip to content

Commit

Permalink
hci_usb: do not initialize static variables to 0
Browse files Browse the repository at this point in the history
hci_usb: do not initialize static variables to 0.

Signed-off-by: Pavel Machek <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
Pavel Machek authored and davem330 committed Apr 20, 2008
1 parent 41588ba commit a882711
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions drivers/bluetooth/hci_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@
#define URB_ZERO_PACKET 0
#endif

static int ignore = 0;
static int ignore_dga = 0;
static int ignore_csr = 0;
static int ignore_sniffer = 0;
static int disable_scofix = 0;
static int force_scofix = 0;
static int reset = 0;
static int ignore;
static int ignore_dga;
static int ignore_csr;
static int ignore_sniffer;
static int disable_scofix;
static int force_scofix;
static int reset;

#ifdef CONFIG_BT_HCIUSB_SCO
static int isoc = 2;
Expand Down

0 comments on commit a882711

Please sign in to comment.