Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 8361
b: refs/heads/master
c: cf85d5c
h: refs/heads/master
i:
  8359: 842e819
v: v3
  • Loading branch information
Christophe Lucas authored and Linus Torvalds committed Sep 10, 2005
1 parent 9939efb commit c917def
Show file tree
Hide file tree
Showing 2 changed files with 7 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: 819a3eba4233ffc6c125e1bf0a15ae093b97c3a6
refs/heads/master: cf85d5ca880c9611906e0ca0c729fdf01c724501
7 changes: 6 additions & 1 deletion trunk/drivers/char/lcd.c
Original file line number Diff line number Diff line change
Expand Up @@ -613,10 +613,15 @@ static struct miscdevice lcd_dev = {

static int lcd_init(void)
{
int ret;
unsigned long data;

pr_info("%s\n", LCD_DRIVER);
misc_register(&lcd_dev);
ret = misc_register(&lcd_dev);
if (ret) {
printk(KERN_WARNING LCD "Unable to register misc device.\n");
return ret;
}

/* Check region? Naaah! Just snarf it up. */
/* request_region(RTC_PORT(0), RTC_IO_EXTENT, "lcd");*/
Expand Down

0 comments on commit c917def

Please sign in to comment.