Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 20951
b: refs/heads/master
c: 10ad1b7
h: refs/heads/master
i:
  20949: 2dca9d8
  20947: 2299e61
  20943: 5059052
v: v3
  • Loading branch information
Jean Delvare authored and Linus Torvalds committed Mar 10, 2006
1 parent 7f9c63f commit 11b4bad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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: 435a80f610b2ac38a4b5334a7ae22672de3f06bd
refs/heads/master: 10ad1b7363090c0eec2b4054a5a3b82d2cc09ee5
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/backlight.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ struct backlight_device *backlight_device_register(const char *name, void *devda

new_bd = kmalloc(sizeof(struct backlight_device), GFP_KERNEL);
if (unlikely(!new_bd))
return ERR_PTR(ENOMEM);
return ERR_PTR(-ENOMEM);

init_MUTEX(&new_bd->sem);
new_bd->props = bp;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/video/backlight/lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ struct lcd_device *lcd_device_register(const char *name, void *devdata,

new_ld = kmalloc(sizeof(struct lcd_device), GFP_KERNEL);
if (unlikely(!new_ld))
return ERR_PTR(ENOMEM);
return ERR_PTR(-ENOMEM);

init_MUTEX(&new_ld->sem);
new_ld->props = lp;
Expand Down

0 comments on commit 11b4bad

Please sign in to comment.