Commit 69c42986 authored by Simon Sandström's avatar Simon Sandström Committed by Greg Kroah-Hartman

staging: bcm2835-audio: Remove static initialisation

Static pointers are explicility initialised to NULL.
Signed-off-by: default avatarSimon Sandström <simon@nikanor.nu>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d3ea53c7
...@@ -28,8 +28,8 @@ ...@@ -28,8 +28,8 @@
* to debug if we run into issues * to debug if we run into issues
*/ */
static struct snd_card *g_card = NULL; static struct snd_card *g_card;
static struct bcm2835_chip *g_chip = NULL; static struct bcm2835_chip *g_chip;
static int snd_bcm2835_free(struct bcm2835_chip *chip) static int snd_bcm2835_free(struct bcm2835_chip *chip)
{ {
......
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