On 7/19/22 13:39, Xin Gao wrote: > repeated word: 'state'. > > Signed-off-by: Xin Gao <gaoxin@xxxxxxxxxx> > --- > drivers/soundwire/stream.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/soundwire/stream.c b/drivers/soundwire/stream.c > index d34150559142..f0312b99e3de 100644 > --- a/drivers/soundwire/stream.c > +++ b/drivers/soundwire/stream.c > @@ -1424,7 +1424,7 @@ int sdw_prepare_stream(struct sdw_stream_runtime *stream) > if (stream->state != SDW_STREAM_CONFIGURED && > stream->state != SDW_STREAM_DEPREPARED && > stream->state != SDW_STREAM_DISABLED) { > - pr_err("%s: %s: inconsistent state state %d\n", > + pr_err("%s: %s: inconsistent state %d\n", > __func__, stream->name, stream->state); > ret = -EINVAL; > goto state_err; There are other occurrences of this repetition, you may want to correct them all in the same patch? stream.c:1444: pr_err("%s: %s: inconsistent state state %d\n", stream.c:1533: pr_err("%s: %s: inconsistent state state %d\n", stream.c:1620: pr_err("%s: %s: inconsistent state state %d\n", stream.c:1701: pr_err("%s: %s: inconsistent state state %d\n",