diff options
author | Fengguang Wu <fengguang.wu@intel.com> | 2014-12-01 23:03:16 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-12-01 23:41:07 +0300 |
commit | ea09dd3b006b26002802b7b534bdb6531429c8ff (patch) | |
tree | b2f22094fe2175eed7cd9cb2504c97126342d4d2 | |
parent | dacacb0aa0cb6fdeb69313db6acfc82456945d7e (diff) | |
download | linux-ea09dd3b006b26002802b7b534bdb6531429c8ff.tar.xz |
ALSA: dice: fix semicolon.cocci warnings
sound/firewire/dice/dice-transaction.c:34:2-3: Unneeded semicolon
Removes unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
CC: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/firewire/dice/dice-transaction.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/firewire/dice/dice-transaction.c b/sound/firewire/dice/dice-transaction.c index a9b98e087dce..1fe304c0a044 100644 --- a/sound/firewire/dice/dice-transaction.c +++ b/sound/firewire/dice/dice-transaction.c @@ -31,7 +31,7 @@ static u64 get_subaddr(struct snd_dice *dice, enum snd_dice_addr_type type, default: offset += dice->global_offset; break; - }; + } offset += DICE_PRIVATE_SPACE; return offset; } |