diff options
author | Steven Miao <realmz6@gmail.com> | 2011-05-30 03:23:36 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-06-02 17:07:35 +0900 |
commit | 70f289db31502ac030049450e63d380f3bc30cd2 (patch) | |
tree | 7ff2389f154d6b8aff8142f3b60b9d8b8dc9779f /drivers/video | |
parent | 1bae852fb0beca3cc95b8de84efbc7254cae62e1 (diff) | |
download | linux-70f289db31502ac030049450e63d380f3bc30cd2.tar.bz2 |
fbdev: bf537-lq035: add missing blacklight properties type
Seems this new field was missed, probably due to this driver being merged
around the time this new backlight field was being added. At any rate,
initial the type field to avoid ugly WARN() dumps.
Signed-off-by: Steven Miao <realmz6@gmail.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/bf537-lq035.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/bf537-lq035.c b/drivers/video/bf537-lq035.c index 47c21fb2c82f..bea53c1a4950 100644 --- a/drivers/video/bf537-lq035.c +++ b/drivers/video/bf537-lq035.c @@ -789,6 +789,7 @@ static int __devinit bfin_lq035_probe(struct platform_device *pdev) i2c_add_driver(&ad5280_driver); memset(&props, 0, sizeof(props)); + props.type = BACKLIGHT_RAW; props.max_brightness = MAX_BRIGHENESS; bl_dev = backlight_device_register("bf537-bl", NULL, NULL, &bfin_lq035fb_bl_ops, &props); |