backlight: corgi_lcd: fix missing prototype
The corgi_lcd_limit_intensity() function is called from platform and defined in a driver, but the driver does not see the declaration: drivers/video/backlight/corgi_lcd.c:434:6: error: no previous prototype for 'corgi_lcd_limit_intensity' [-Werror=missing-prototypes] 434 | void corgi_lcd_limit_intensity(int limit) Move the prototype into a header that can be included from both sides to shut up the warning. Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
parent
92d39d0183
commit
09eadda27c
3 changed files with 3 additions and 1 deletions
|
|
@ -15,4 +15,6 @@ struct corgi_lcd_platform_data {
|
|||
void (*kick_battery)(void);
|
||||
};
|
||||
|
||||
void corgi_lcd_limit_intensity(int limit);
|
||||
|
||||
#endif /* __LINUX_SPI_CORGI_LCD_H */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue