backlight: fix class_find_device() arguments

Michał's previous patch missed this backlight check to fix up the
class_find_device() arguments.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Cc: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Greg Kroah-Hartman 2013-02-06 16:43:02 -08:00
parent 6e9430ac57
commit 3213f631da

View file

@ -371,7 +371,7 @@ void backlight_device_unregister(struct backlight_device *bd)
EXPORT_SYMBOL(backlight_device_unregister); EXPORT_SYMBOL(backlight_device_unregister);
#ifdef CONFIG_OF #ifdef CONFIG_OF
static int of_parent_match(struct device *dev, void *data) static int of_parent_match(struct device *dev, const void *data)
{ {
return dev->parent && dev->parent->of_node == data; return dev->parent && dev->parent->of_node == data;
} }