Skip to content

Commit

Permalink
backlight: rename corgibl_limit_intensity() to genericbl_limit_intens…
Browse files Browse the repository at this point in the history
…ity()

The rename of corgibl_limit_intensity is missed in commit d00ba72
("backlight: Rename the corgi backlight driver to generic").  Let's fix it
now.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
Axel Lin authored and Linus Torvalds committed Nov 1, 2011
1 parent 4f5a66b commit 1bff3a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/video/backlight/generic_bl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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,
Expand Down

0 comments on commit 1bff3a2

Please sign in to comment.