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

Commit 84549f61 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "ASoC: msm: qdsp6v2: update uninitialized ret"

parents 002feefb 22e9c034
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -550,7 +550,7 @@ static bool is_mi2s_rx_port(int port_id)

static uint32_t get_mi2s_rx_clk_val(int port_id)
{
	uint32_t clk_val;
	uint32_t clk_val = 0;

	/*
	 *  Derive clock value based on sample rate, bits per sample and
+1 −1
Original line number Diff line number Diff line
@@ -1526,7 +1526,7 @@ static int afe_send_codec_reg_page_config(
static int afe_send_codec_reg_config(
	struct afe_param_cdc_reg_cfg_data *cdc_reg_cfg)
{
	int i, j, ret;
	int i, j, ret = 0;
	int pkt_size, payload_size, reg_per_pkt, num_pkts, num_regs;
	struct afe_svc_cmd_cdc_reg_cfg *config;
	struct afe_svc_cmd_set_param *param;