mirror of
https://github.com/torvalds/linux.git
synced 2026-05-31 10:33:41 +02:00
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: Abhijit Naik <abhijitnaik27@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
55dd5a39a9
commit
626eea7df9
|
|
@ -65,7 +65,7 @@ struct bcm2835_audio_instance {
|
|||
short peer_version;
|
||||
};
|
||||
|
||||
bool force_bulk = false;
|
||||
static bool force_bulk;
|
||||
|
||||
/* ---- Private Variables ---------------------------------------------------- */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user