Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 626eea7d authored by Abhijit Naik's avatar Abhijit Naik Committed by Greg Kroah-Hartman
Browse files

staging: bcm2835-audio: Fixed initialization of global to "false"



bcm2835-vchiq.c:
fixing ERROR: do not initialise globals to false

Instead of explicitly initializing global variable force_bulk to "false",
declared force_bulk as static variable.

Signed-off-by: default avatarAbhijit Naik <abhijitnaik27@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 55dd5a39
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ struct bcm2835_audio_instance {
	short peer_version;
};

bool force_bulk = false;
static bool force_bulk;

/* ---- Private Variables ---------------------------------------------------- */