Commit 808709d7 authored by Jason Wang's avatar Jason Wang Committed by Takashi Iwai

ALSA: sparc: no need to initialise statics to 0

Static variables do not need to be initialised to 0, because compiler
will initialise all uninitialised statics to 0. Thus, remove the
unneeded initializations.
Signed-off-by: default avatarJason Wang <wangborong@cdjrlc.com>
Link: https://lore.kernel.org/r/20211212070422.281924-1-wangborong@cdjrlc.comSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 6fadb494
...@@ -688,7 +688,7 @@ static void dbri_cmdsend(struct snd_dbri *dbri, s32 *cmd, int len) ...@@ -688,7 +688,7 @@ static void dbri_cmdsend(struct snd_dbri *dbri, s32 *cmd, int len)
{ {
u32 dvma_addr = (u32)dbri->dma_dvma; u32 dvma_addr = (u32)dbri->dma_dvma;
s32 tmp, addr; s32 tmp, addr;
static int wait_id = 0; static int wait_id;
wait_id++; wait_id++;
wait_id &= 0xffff; /* restrict it to a 16 bit counter. */ wait_id &= 0xffff; /* restrict it to a 16 bit counter. */
...@@ -1926,7 +1926,7 @@ static void dbri_process_interrupt_buffer(struct snd_dbri *dbri) ...@@ -1926,7 +1926,7 @@ static void dbri_process_interrupt_buffer(struct snd_dbri *dbri)
static irqreturn_t snd_dbri_interrupt(int irq, void *dev_id) static irqreturn_t snd_dbri_interrupt(int irq, void *dev_id)
{ {
struct snd_dbri *dbri = dev_id; struct snd_dbri *dbri = dev_id;
static int errcnt = 0; static int errcnt;
int x; int x;
if (dbri == NULL) if (dbri == NULL)
...@@ -2591,7 +2591,7 @@ static int dbri_probe(struct platform_device *op) ...@@ -2591,7 +2591,7 @@ static int dbri_probe(struct platform_device *op)
struct snd_dbri *dbri; struct snd_dbri *dbri;
struct resource *rp; struct resource *rp;
struct snd_card *card; struct snd_card *card;
static int dev = 0; static int dev;
int irq; int irq;
int err; int err;
......
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