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

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
......@@ -65,7 +65,7 @@ struct bcm2835_audio_instance {
short peer_version;
};
bool force_bulk = false;
static bool force_bulk;
/* ---- Private Variables ---------------------------------------------------- */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment