ASoC: Intel: remove unneeded semicolon
A semicolon is not needed after a switch statement. Signed-off-by: Tom Rix <trix@redhat.com> Acked-by: Cezary Rojewski <cezary.rojewski@intel.com> Link: https://lore.kernel.org/r/20201101171943.2305030-1-trix@redhat.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
ff3cfccba4
commit
c1af06a28a
|
@ -186,7 +186,7 @@ int sst_driver_ops(struct intel_sst_drv *sst)
|
|||
"SST Driver capabilities missing for dev_id: %x",
|
||||
sst->dev_id);
|
||||
return -EINVAL;
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
void sst_process_pending_msg(struct work_struct *work)
|
||||
|
|
|
@ -304,7 +304,7 @@ static int catpt_load_block(struct catpt_dev *cdev,
|
|||
default:
|
||||
sram = &cdev->dram;
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
dst_addr = sram->start + blk->ram_offset;
|
||||
if (alloc) {
|
||||
|
|
|
@ -92,7 +92,7 @@ catpt_get_stream_template(struct snd_pcm_substream *substream)
|
|||
break;
|
||||
default:
|
||||
break;
|
||||
};
|
||||
}
|
||||
|
||||
return catpt_topology[type];
|
||||
}
|
||||
|
@ -419,7 +419,7 @@ static int catpt_dai_apply_usettings(struct snd_soc_dai *dai,
|
|||
break;
|
||||
default:
|
||||
return 0;
|
||||
};
|
||||
}
|
||||
|
||||
list_for_each_entry(pos, &component->card->snd_card->controls, list) {
|
||||
if (pos->private_data == component &&
|
||||
|
|
Loading…
Reference in New Issue