diff options
author | Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> | 2018-12-17 01:49:05 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-01-03 19:34:10 +0300 |
commit | bf88b3c3c277c8138d688a0fc3199b57fecfaf56 (patch) | |
tree | a8dfa3d20bf3053245f0e48976de5d04f6f1442d /sound/soc/intel/haswell/sst-haswell-ipc.c | |
parent | 6c5414589721d696fe300dc0b8720e0368e3907a (diff) | |
download | linux-bf88b3c3c277c8138d688a0fc3199b57fecfaf56.tar.xz |
ASoC: Intel: Haswell: assign booleans to true/false
Detected with Coccinelle
Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/haswell/sst-haswell-ipc.c')
-rw-r--r-- | sound/soc/intel/haswell/sst-haswell-ipc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/haswell/sst-haswell-ipc.c b/sound/soc/intel/haswell/sst-haswell-ipc.c index d33bdaf92c57..31fcdf12c67d 100644 --- a/sound/soc/intel/haswell/sst-haswell-ipc.c +++ b/sound/soc/intel/haswell/sst-haswell-ipc.c @@ -1216,7 +1216,7 @@ int sst_hsw_stream_commit(struct sst_hsw *hsw, struct sst_hsw_stream *stream) return ret; } - stream->commited = 1; + stream->commited = true; trace_hsw_stream_alloc_reply(stream); return 0; |