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

Commit 17344d78 authored by Swetha Chikkaboraiah's avatar Swetha Chikkaboraiah
Browse files

driver: Fix compilation error with new sdclang 12



Fix the compilation error with sdclang 12.0.

Change-Id: If6b5caf655568b0d4ee12a71927df9476f3b4c55
Signed-off-by: default avatarSwetha Chikkaboraiah <schikk@codeaurora.org>
parent 5347ec32
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ void *diagmem_alloc(struct diagchar_dev *driver, int size, int pool_type)
			break;
		}
		if (size == 0 || size > mempool->itemsize ||
			size > (int)mempool->pool->pool_data) {
			size > (size_t)mempool->pool->pool_data) {
			pr_err_ratelimited("diag: cannot alloc from mempool %s, invalid size: %d\n",
					   mempool->name, size);
			break;
+1 −1
Original line number Diff line number Diff line
@@ -135,7 +135,7 @@ static void __dump_packet(u8 *packet)
	/* row must contain enough for 0xdeadbaad * 8 to be converted into
	 * "de ad ba ab " * 8 + '\0'
	 */
	char row[3 * row_size];
	char row[96]; /*char row[3 * row_size];*/

	for (c = 0; c * row_size < packet_size; ++c) {
		int bytes_to_read = ((c + 1) * row_size > packet_size) ?
+2 −2
Original line number Diff line number Diff line
@@ -3704,8 +3704,8 @@ static int __qseecom_send_cmd(struct qseecom_dev_handle *data,
				(uint32_t)(__qseecom_uvirt_to_kphys(
				data, (uintptr_t)req->resp_buf));
		} else {
			send_data_req.req_ptr = (uint32_t)req->cmd_req_buf;
			send_data_req.rsp_ptr = (uint32_t)req->resp_buf;
			send_data_req.req_ptr = (uintptr_t)req->cmd_req_buf;
			send_data_req.rsp_ptr = (uintptr_t)req->resp_buf;
		}

		send_data_req.req_len = req->cmd_req_len;
+2 −2
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
 * Copyright (c) 2017-2019, 2021, The Linux Foundation. All rights reserved.
 */

#include "ipahal.h"
@@ -225,7 +225,7 @@ static struct ipahal_stats_init_pyld *ipahal_generate_init_pyld_flt_rt_v4_5(
	void *params, bool is_atomic_ctx)
{
	struct ipahal_stats_init_pyld *pyld;
	int num = (int)(params);
	int num = (uintptr_t)(params);

	if (num > IPA_MAX_FLT_RT_CNT_INDEX ||
		num <= 0) {
+2 −2
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/* Copyright (c) 2010-2018, 2020, The Linux Foundation. All rights reserved. */
/* Copyright (c) 2010-2018, 2020, 2021, The Linux Foundation. All rights reserved. */

#include <linux/bitops.h>
#include <linux/delay.h>
@@ -649,7 +649,7 @@ static ssize_t edid_store(struct device *dev,
	memset(hdmi_ctrl->edid_buf, 0, hdmi_ctrl->edid_buf_size);

	while (edid_size--) {
		char t[char_to_nib + 1];
		char t[3]; /* char_to_nib + 1; */
		int d;

		memcpy(t, buf_t, sizeof(char) * char_to_nib);