mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
viafb: remove dead code
Remove a completly unused function. Signed-off-by: Florian Tobias Schandinat <FlorianSchandinat@gmx.de> Cc: Joseph Chan <JosephChan@via.com.tw> Cc: Scott Fang <ScottFang@viatech.com.cn> Cc: Krzysztof Helt <krzysztof.h1@poczta.fm> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
cc8b82f8c8
commit
2365dfe994
2 changed files with 0 additions and 13 deletions
|
@ -239,15 +239,3 @@ void viafb_get_gamma_support_state(int bpp, unsigned int *support_state)
|
||||||
else
|
else
|
||||||
*support_state = CRT_Device | DVI_Device | LCD_Device;
|
*support_state = CRT_Device | DVI_Device | LCD_Device;
|
||||||
}
|
}
|
||||||
|
|
||||||
int viafb_input_parameter_converter(int parameter_value)
|
|
||||||
{
|
|
||||||
int result;
|
|
||||||
|
|
||||||
if (parameter_value >= 1 && parameter_value <= 9)
|
|
||||||
result = 1 << (parameter_value - 1);
|
|
||||||
else
|
|
||||||
result = 1;
|
|
||||||
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
|
@ -30,6 +30,5 @@ bool viafb_lcd_get_support_expand_state(u32 xres, u32 yres);
|
||||||
void viafb_set_gamma_table(int bpp, unsigned int *gamma_table);
|
void viafb_set_gamma_table(int bpp, unsigned int *gamma_table);
|
||||||
void viafb_get_gamma_table(unsigned int *gamma_table);
|
void viafb_get_gamma_table(unsigned int *gamma_table);
|
||||||
void viafb_get_gamma_support_state(int bpp, unsigned int *support_state);
|
void viafb_get_gamma_support_state(int bpp, unsigned int *support_state);
|
||||||
int viafb_input_parameter_converter(int parameter_value);
|
|
||||||
|
|
||||||
#endif /* __VIAUTILITY_H__ */
|
#endif /* __VIAUTILITY_H__ */
|
||||||
|
|
Loading…
Reference in a new issue