Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 10583cda authored by Pierre-Louis Bossart's avatar Pierre-Louis Bossart Committed by Mark Brown
Browse files

ASoC: Intel: Atom: simplify boolean tests



Detected with Coccinelle

Signed-off-by: default avatarPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent e295450d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -647,7 +647,7 @@ static int sst_swm_mixer_event(struct snd_soc_dapm_widget *w,
		set_mixer = false;
	}

	if (set_mixer == false)
	if (!set_mixer)
		return 0;

	if (SND_SOC_DAPM_EVENT_ON(event) ||
+1 −1
Original line number Diff line number Diff line
@@ -190,7 +190,7 @@ int sst_fill_stream_params(void *substream,
	map = ctx->pdata->pdev_strm_map;
	map_size = ctx->pdata->strm_map_size;

	if (is_compress == true)
	if (is_compress)
		cstream = (struct snd_compr_stream *)substream;
	else
		pstream = (struct snd_pcm_substream *)substream;
+1 −1
Original line number Diff line number Diff line
@@ -334,7 +334,7 @@ static int sst_acpi_probe(struct platform_device *pdev)
		return ret;

	ret = is_byt_cr(dev, &bytcr);
	if (!((ret < 0) || (bytcr == false))) {
	if (!(ret < 0 || !bytcr)) {
		dev_info(dev, "Detected Baytrail-CR platform\n");

		/* override resource info */
+1 −1
Original line number Diff line number Diff line
@@ -146,7 +146,7 @@ static int sst_power_control(struct device *dev, bool state)
	int ret = 0;
	int usage_count = 0;

	if (state == true) {
	if (state) {
		ret = pm_runtime_get_sync(dev);
		usage_count = GET_USAGE_COUNT(dev);
		dev_dbg(ctx->dev, "Enable: pm usage count: %d\n", usage_count);
+1 −1
Original line number Diff line number Diff line
@@ -269,7 +269,7 @@ static void sst_do_memcpy(struct list_head *memcpy_list)
	struct sst_memcpy_list *listnode;

	list_for_each_entry(listnode, memcpy_list, memcpylist) {
		if (listnode->is_io == true)
		if (listnode->is_io)
			memcpy32_toio((void __iomem *)listnode->dstn,
					listnode->src, listnode->size);
		else