mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-28 03:08:53 -04:00
staging: bcm2835-audio: Remove static initialisation
Static pointers are explicility initialised to NULL. Signed-off-by: Simon Sandström <simon@nikanor.nu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d3ea53c7a4
commit
69c429864e
@@ -28,8 +28,8 @@
|
||||
* to debug if we run into issues
|
||||
*/
|
||||
|
||||
static struct snd_card *g_card = NULL;
|
||||
static struct bcm2835_chip *g_chip = NULL;
|
||||
static struct snd_card *g_card;
|
||||
static struct bcm2835_chip *g_chip;
|
||||
|
||||
static int snd_bcm2835_free(struct bcm2835_chip *chip)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user