diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2016-12-07 14:22:50 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2016-12-07 14:35:03 +0300 |
commit | 048ea6dfbe94f00afe52a2403324449efb356cd6 (patch) | |
tree | 24c4d7bd77a84f8e046138470706714249bbed6b /sound | |
parent | fd1a5059610cd3887f1050171a840ca864108730 (diff) | |
download | linux-048ea6dfbe94f00afe52a2403324449efb356cd6.tar.xz |
ALSA: cs46xx: add a new line
We accidentally deleted a newline so now the "nreallocated++;" statement
is hanging out way off to the right of the screen.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/cs46xx/dsp_spos.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/cs46xx/dsp_spos.c b/sound/pci/cs46xx/dsp_spos.c index 4a0cbd2241d8..aa61615288ff 100644 --- a/sound/pci/cs46xx/dsp_spos.c +++ b/sound/pci/cs46xx/dsp_spos.c @@ -107,7 +107,8 @@ static int shadow_and_reallocate_code (struct snd_cs46xx * chip, u32 * data, u32 dev_dbg(chip->card->dev, "handle_wideop:[2] %05x:%05x addr %04x\n", - hival, loval, address); nreallocated++; + hival, loval, address); + nreallocated++; } /* wide_opcodes[j] == wide_op */ } /* for */ } /* mod_type == 0 ... */ |