From: Axel Lin Date: Wed, 5 Oct 2011 00:43:32 +0000 (+1100) Subject: backlight: rename corgibl_limit_intensity() to genericbl_limit_intensity() X-Git-Tag: next-20111012~1^2~95 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b5a49f21b823e491b4287198ebebc3ab8256edfc;p=karo-tx-linux.git backlight: rename corgibl_limit_intensity() to genericbl_limit_intensity() The rename of corgibl_limit_intensity is missed in commit d00ba726 ("backlight: Rename the corgi backlight driver to generic"). Let's fix it now. Signed-off-by: Axel Lin Cc: Richard Purdie Signed-off-by: Andrew Morton --- diff --git a/drivers/video/backlight/generic_bl.c b/drivers/video/backlight/generic_bl.c index 8c6befd65a33..adb191466d64 100644 --- a/drivers/video/backlight/generic_bl.c +++ b/drivers/video/backlight/generic_bl.c @@ -56,7 +56,7 @@ static int genericbl_get_intensity(struct backlight_device *bd) * Called when the battery is low to limit the backlight intensity. * If limit==0 clear any limit, otherwise limit the intensity */ -void corgibl_limit_intensity(int limit) +void genericbl_limit_intensity(int limit) { struct backlight_device *bd = generic_backlight_device; @@ -68,7 +68,7 @@ void corgibl_limit_intensity(int limit) backlight_update_status(generic_backlight_device); mutex_unlock(&bd->ops_lock); } -EXPORT_SYMBOL(corgibl_limit_intensity); +EXPORT_SYMBOL(genericbl_limit_intensity); static const struct backlight_ops genericbl_ops = { .options = BL_CORE_SUSPENDRESUME,