Prechádzať zdrojové kódy

dsp: q6afe: return error on no configuration data

Move the return value to within the error check
condition to avoid returning error for valid
scenarios too.

Change-Id: I718786d9eb3c779a85da3a4cb3929806692f5424
Signed-off-by: Karthikeyan Mani <[email protected]>
Karthikeyan Mani 6 rokov pred
rodič
commit
0253cb9698
1 zmenil súbory, kde vykonal 3 pridanie a 2 odobranie
  1. 3 2
      dsp/q6afe.c

+ 3 - 2
dsp/q6afe.c

@@ -2776,9 +2776,10 @@ int afe_send_spdif_ch_status_cfg(struct afe_param_id_spdif_ch_status_cfg
 	struct param_hdr_v3 param_hdr;
 	int ret = 0;
 
-	if (!ch_status_cfg)
+	if (!ch_status_cfg) {
 		pr_err("%s: Error, no configuration data\n", __func__);
-	return -EINVAL;
+		return -EINVAL;
+	}
 
 	memset(&param_hdr, 0, sizeof(param_hdr));
 	param_hdr.module_id = AFE_MODULE_AUDIO_DEV_INTERFACE;