Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188182
b: refs/heads/master
c: f0af789
h: refs/heads/master
v: v3
  • Loading branch information
Bruno Prémont authored and Richard Purdie committed Mar 16, 2010
1 parent 7754171 commit 3b3ec8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 36bc5ee6a8d13333980fa54e97d3469d3d4cda98
refs/heads/master: f0af78991363d704694a3618b638662c97d8a110
4 changes: 3 additions & 1 deletion trunk/drivers/platform/x86/classmate-laptop.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ static int cmpc_bl_update_status(struct backlight_device *bd)
return -1;
}

static struct backlight_ops cmpc_bl_ops = {
static const struct backlight_ops cmpc_bl_ops = {
.get_brightness = cmpc_bl_get_brightness,
.update_status = cmpc_bl_update_status
};
Expand All @@ -469,6 +469,8 @@ static int cmpc_bl_add(struct acpi_device *acpi)
props.max_brightness = 7;
bd = backlight_device_register("cmpc_bl", &acpi->dev, acpi->handle,
&cmpc_bl_ops, &props);
if (IS_ERR(bd))
return PTR_ERR(bd);
dev_set_drvdata(&acpi->dev, bd);
return 0;
}
Expand Down

0 comments on commit 3b3ec8a

Please sign in to comment.