mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
staging: sm750fb: Remove unused return variable in program_mode_registers()
Drops variable ret as it is unused in the code. This therefore modifies the return type of program_mode_registers() to void from int since the return value is being ignored in all function calls. This improves code readability and maintainability. Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Dorcas AnonoLitunya <anonolitunya@gmail.com> Link: https://lore.kernel.org/r/20231019101348.22076-3-anonolitunya@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
45e173c037
commit
3cad0b9d0b
@ -75,10 +75,9 @@ display_control_adjust_SM750LE(struct mode_parameter *mode_param,
|
||||
}
|
||||
|
||||
/* only timing related registers will be programed */
|
||||
static int program_mode_registers(struct mode_parameter *mode_param,
|
||||
struct pll_value *pll)
|
||||
static void program_mode_registers(struct mode_parameter *mode_param,
|
||||
struct pll_value *pll)
|
||||
{
|
||||
int ret = 0;
|
||||
int cnt = 0;
|
||||
unsigned int tmp, reg;
|
||||
|
||||
@ -201,10 +200,7 @@ static int program_mode_registers(struct mode_parameter *mode_param,
|
||||
break;
|
||||
poke32(PANEL_DISPLAY_CTRL, tmp | reg);
|
||||
}
|
||||
} else {
|
||||
ret = -1;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
int ddk750_set_mode_timing(struct mode_parameter *parm, enum clock_type clock)
|
||||
|
Loading…
Reference in New Issue
Block a user