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

Commit 8166292d authored by Yan He's avatar Yan He
Browse files

msm: sps: correct compilation errors



Correct the compilation errors introduced when modifying the
driver for the new coding style during kernel upgrade.

Change-Id: I3dacd03ae2838907c20943ce94fa44857d208703
Signed-off-by: default avatarYan He <yanhe@codeaurora.org>
parent 717aed81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2169,7 +2169,7 @@ int sps_register_bam_device(const struct sps_bam_props *bam_props,
	bam = kzalloc(sizeof(*bam), GFP_KERNEL);
	if (bam == NULL) {
		SPS_ERR(sps,
			"sps:Unable to allocate BAM device state: size is %d",
			"sps:Unable to allocate BAM device state: size is %zu",
			sizeof(*bam));
		goto exit_err;
	}
+1 −1
Original line number Diff line number Diff line
@@ -318,7 +318,7 @@ void print_bam_reg(void *virt_addr);
void print_bam_pipe_reg(void *virt_addr, u32 pipe_index);

/* output the content of selected BAM-level registers */
void print_bam_pipe_reg(void *virt_addr, u32 pipe_index);
void print_bam_selected_reg(void *virt_addr, u32 pipe_index);

/* output the content of selected BAM pipe registers */
void print_bam_pipe_selected_reg(void *virt_addr, u32 pipe_index);