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

Commit 33219f0c authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "msm: arm64: remove warnings related to uninitialized variables"

parents f1c106bc c5cbd88d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -859,7 +859,7 @@ static int tmc_enable_etr_sink_sysfs(struct coresight_device *csdev)
	bool used = false;
	unsigned long flags;
	void __iomem *vaddr = NULL;
	dma_addr_t paddr;
	dma_addr_t paddr = 0;
	struct tmc_drvdata *drvdata = dev_get_drvdata(csdev->dev.parent);


+1 −1
Original line number Diff line number Diff line
@@ -3498,7 +3498,7 @@ void ipahal_get_aggr_force_close_valmask(int ep_idx,
	struct ipahal_reg_valmask *valmask)
{
	u32 shft;
	u32 bmsk;
	u32 bmsk = 0;

	if (!valmask) {
		IPAHAL_ERR("Input error\n");
+1 −1
Original line number Diff line number Diff line
@@ -295,7 +295,7 @@ static int usb_bam_alloc_buffer(struct usb_bam_pipe_connect *pipe_connect)
	struct device *dev = &ctx->usb_bam_pdev->dev;
	struct sg_table data_sgt, desc_sgt;
	dma_addr_t data_iova, desc_iova;
	u32 data_fifo_size;
	u32 data_fifo_size = 0;

	pr_debug("%s: data_fifo size:%x desc_fifo_size:%x\n",
				__func__, pipe_connect->data_fifo_size,
+1 −1
Original line number Diff line number Diff line
@@ -5210,7 +5210,7 @@ int smblib_set_prop_pr_swap_in_progress(struct smb_charger *chg,
				const union power_supply_propval *val)
{
	int rc;
	u8 stat, orientation;
	u8 stat = 0, orientation;

	chg->pr_swap_in_progress = val->intval;