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

Commit 85eabac4 authored by Manu Abraham's avatar Manu Abraham Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB (9453): stb0899: fix compilation warnings



Cleanup/Optimization:
* Fix compile warnings
* The compile warnings helped to identify 2 unnecessary I/O operations

Signed-off-by: default avatarManu Abraham <manu@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent d6812086
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -199,9 +199,7 @@ static enum stb0899_status stb0899_check_tmg(struct stb0899_state *state)

	msleep(internal->t_timing);

	reg = stb0899_read_reg(state, STB0899_RTF);
	STB0899_SETFIELD_VAL(RTF_TIMING_LOOP_FREQ, reg, 0xf2);
	stb0899_write_reg(state, STB0899_RTF, reg);
	stb0899_write_reg(state, STB0899_RTF, 0xf2);
	reg = stb0899_read_reg(state, STB0899_TLIR);
	lock = STB0899_GETFIELD(TLIR_TMG_LOCK_IND, reg);
	timing = stb0899_read_reg(state, STB0899_RTF);
@@ -603,9 +601,7 @@ enum stb0899_status stb0899_dvbs_algo(struct stb0899_state *state)
		cfr[0] = cfr[1] = 0;
		stb0899_write_regs(state, STB0899_CFRM, cfr, 2); /* RESET derotator frequency	*/

		reg = stb0899_read_reg(state, STB0899_RTF);
		STB0899_SETFIELD_VAL(RTF_TIMING_LOOP_FREQ, reg, 0);
		stb0899_write_reg(state, STB0899_RTF, reg);
		stb0899_write_reg(state, STB0899_RTF, 0);
		reg = stb0899_read_reg(state, STB0899_CFD);
		STB0899_SETFIELD_VAL(CFD_ON, reg, 1);
		stb0899_write_reg(state, STB0899_CFD, reg);
+1 −1
Original line number Diff line number Diff line
@@ -495,7 +495,7 @@ int stb0899_read_regs(struct stb0899_state *state, unsigned int reg, u8 *buf, si
	return status < 0 ? status : -EREMOTEIO;
}

int stb0899_write_regs(struct stb0899_state *state, unsigned int reg, u8 *data, size_t count)
int stb0899_write_regs(struct stb0899_state *state, unsigned int reg, u8 *data, u32 count)
{
	int ret;
	u8 buf[2 + count];
+1 −1
Original line number Diff line number Diff line
@@ -242,7 +242,7 @@ extern int stb0899_read_regs(struct stb0899_state *state,

extern int stb0899_write_regs(struct stb0899_state *state,
			      unsigned int reg, u8 *data,
			      size_t count);
			      u32 count);

extern int stb0899_write_reg(struct stb0899_state *state,
			     unsigned int reg,