Unverified Commit d22b4117 authored by Dan Carpenter's avatar Dan Carpenter Committed by Mark Brown
Browse files

ASoC: wcd9335: remove some unnecessary NULL checks



These are arrays, not pointers, and they can't be NULL.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 37768e39
Loading
Loading
Loading
Loading
+8 −12
Original line number Diff line number Diff line
@@ -2001,21 +2001,17 @@ static int wcd9335_set_channel_map(struct snd_soc_dai *dai,
		return -EINVAL;
	}

	if (wcd->rx_chs) {
	wcd->num_rx_port = rx_num;
	for (i = 0; i < rx_num; i++) {
		wcd->rx_chs[i].ch_num = rx_slot[i];
		INIT_LIST_HEAD(&wcd->rx_chs[i].list);
	}
	}

	if (wcd->tx_chs) {
	wcd->num_tx_port = tx_num;
	for (i = 0; i < tx_num; i++) {
		wcd->tx_chs[i].ch_num = tx_slot[i];
		INIT_LIST_HEAD(&wcd->tx_chs[i].list);
	}
	}

	return 0;
}