dai: changes whitespace alignment in dai ops

This commit changes white space alignment in dai
audio component.

Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
This commit is contained in:
Bartosz Kokoszko 2020-01-13 13:04:47 +01:00 committed by Liam Girdwood
parent 55866f28ac
commit 5e3edf8cd1
1 changed files with 14 additions and 14 deletions

View File

@ -831,20 +831,20 @@ static int dai_ts_get(struct comp_dev *dev, struct timestamp_data *tsd)
static const struct comp_driver comp_dai = {
.type = SOF_COMP_DAI,
.ops = {
.new = dai_new,
.free = dai_free,
.params = dai_params,
.dai_get_hw_params = dai_comp_get_hw_params,
.trigger = dai_comp_trigger,
.copy = dai_copy,
.prepare = dai_prepare,
.reset = dai_reset,
.dai_config = dai_config,
.position = dai_position,
.dai_ts_config = dai_ts_config,
.dai_ts_start = dai_ts_start,
.dai_ts_stop = dai_ts_stop,
.dai_ts_get = dai_ts_get,
.new = dai_new,
.free = dai_free,
.params = dai_params,
.dai_get_hw_params = dai_comp_get_hw_params,
.trigger = dai_comp_trigger,
.copy = dai_copy,
.prepare = dai_prepare,
.reset = dai_reset,
.dai_config = dai_config,
.position = dai_position,
.dai_ts_config = dai_ts_config,
.dai_ts_start = dai_ts_start,
.dai_ts_stop = dai_ts_stop,
.dai_ts_get = dai_ts_get,
},
};