diff options
author | Andrew Morton <[email protected]> | 2011-06-15 15:08:12 -0700 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2011-06-15 20:03:59 -0700 |
commit | e1bbd19bc4afef7adb80cca163800391c4f5773d (patch) | |
tree | bdc8fc76f7de8127cad59e2aefb3fcfc01f0e8b0 | |
parent | a59ec1e7ff98cc4365d5b1bff4e7102e86b5716b (diff) |
drivers/video/backlight/adp8870_bl.c: add missed props.type conversion
Cc: Michael Hennerich <[email protected]>
Cc: Mike Frysinger <[email protected]>
Cc: Matthew Garrett <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r-- | drivers/video/backlight/adp8870_bl.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/backlight/adp8870_bl.c b/drivers/video/backlight/adp8870_bl.c index e320b62576e2..05a8832bb3eb 100644 --- a/drivers/video/backlight/adp8870_bl.c +++ b/drivers/video/backlight/adp8870_bl.c @@ -889,6 +889,7 @@ static int __devinit adp8870_probe(struct i2c_client *client, mutex_init(&data->lock); memset(&props, 0, sizeof(props)); + props.type = BACKLIGHT_RAW; props.max_brightness = props.brightness = ADP8870_MAX_BRIGHTNESS; bl = backlight_device_register(dev_driver_string(&client->dev), &client->dev, data, &adp8870_bl_ops, &props); |