Skip to content

Commit

Permalink
audio: mux: Fix line exceeding 100 characters
Browse files Browse the repository at this point in the history
Checkpatch complains about line from mux.c having more
than 100 characters. This commit fixes this by splitting
said line into 2 lines.

Signed-off-by: Laurentiu Mihalcea <[email protected]>
  • Loading branch information
LaurentiuM1234 committed Nov 29, 2023
1 parent e82f618 commit cc4eb17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/audio/mux/mux.c
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,8 @@ static int mux_demux_common_init(struct processing_module *mod)
comp_dbg(dev, "mux_init()");

if (cfg->size > MUX_BLOB_MAX_SIZE) {
comp_err(dev, "mux_init(): blob size %zu exceeds %zu", cfg->size, MUX_BLOB_MAX_SIZE);
comp_err(dev, "mux_init(): blob size %zu exceeds %zu",
cfg->size, MUX_BLOB_MAX_SIZE);
return -EINVAL;
}

Expand Down

0 comments on commit cc4eb17

Please sign in to comment.