Commit 1215daee authored by Vinod Koul's avatar Vinod Koul Committed by Greg Kroah-Hartman
Browse files

soundwire: intel: more alignment fixes



Found few more issues reported checkpatch on code alignment so fix those
as well in the intel module.

Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 62f0cec3
Loading
Loading
Loading
Loading
+18 −18
Original line number Diff line number Diff line
@@ -691,8 +691,8 @@ static int intel_create_dai(struct sdw_cdns *cdns,
			return -ENOMEM;

		if (type == INTEL_PDI_BD || type == INTEL_PDI_OUT) {
			dais[i].playback.stream_name = kasprintf(GFP_KERNEL,
							"SDW%d Tx%d",
			dais[i].playback.stream_name =
				kasprintf(GFP_KERNEL, "SDW%d Tx%d",
					  cdns->instance, i);
			if (!dais[i].playback.stream_name) {
				kfree(dais[i].name);
@@ -706,8 +706,8 @@ static int intel_create_dai(struct sdw_cdns *cdns,
		}

		if (type == INTEL_PDI_BD || type == INTEL_PDI_IN) {
			dais[i].capture.stream_name = kasprintf(GFP_KERNEL,
							"SDW%d Rx%d",
			dais[i].capture.stream_name =
				kasprintf(GFP_KERNEL, "SDW%d Rx%d",
					  cdns->instance, i);
			if (!dais[i].capture.stream_name) {
				kfree(dais[i].name);
@@ -749,40 +749,40 @@ static int intel_register_dai(struct sdw_intel *sdw)
	/* Create PCM DAIs */
	stream = &cdns->pcm;

	ret = intel_create_dai(cdns, dais, INTEL_PDI_IN,
			stream->num_in, off, stream->num_ch_in, true);
	ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, stream->num_in,
			       off, stream->num_ch_in, true);
	if (ret)
		return ret;

	off += cdns->pcm.num_in;
	ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT,
			cdns->pcm.num_out, off, stream->num_ch_out, true);
	ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pcm.num_out,
			       off, stream->num_ch_out, true);
	if (ret)
		return ret;

	off += cdns->pcm.num_out;
	ret = intel_create_dai(cdns, dais, INTEL_PDI_BD,
			cdns->pcm.num_bd, off, stream->num_ch_bd, true);
	ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pcm.num_bd,
			       off, stream->num_ch_bd, true);
	if (ret)
		return ret;

	/* Create PDM DAIs */
	stream = &cdns->pdm;
	off += cdns->pcm.num_bd;
	ret = intel_create_dai(cdns, dais, INTEL_PDI_IN,
			cdns->pdm.num_in, off, stream->num_ch_in, false);
	ret = intel_create_dai(cdns, dais, INTEL_PDI_IN, cdns->pdm.num_in,
			       off, stream->num_ch_in, false);
	if (ret)
		return ret;

	off += cdns->pdm.num_in;
	ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT,
			cdns->pdm.num_out, off, stream->num_ch_out, false);
	ret = intel_create_dai(cdns, dais, INTEL_PDI_OUT, cdns->pdm.num_out,
			       off, stream->num_ch_out, false);
	if (ret)
		return ret;

	off += cdns->pdm.num_bd;
	ret = intel_create_dai(cdns, dais, INTEL_PDI_BD,
			cdns->pdm.num_bd, off, stream->num_ch_bd, false);
	ret = intel_create_dai(cdns, dais, INTEL_PDI_BD, cdns->pdm.num_bd,
			       off, stream->num_ch_bd, false);
	if (ret)
		return ret;

+1 −1

File changed.

Contains only whitespace changes.