Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 164564
b: refs/heads/master
c: 3f6db50
h: refs/heads/master
v: v3
  • Loading branch information
Peter Huewe authored and Jiri Kosina committed Sep 21, 2009
1 parent c7a1204 commit c486f7c
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 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: 411c94038594b2a3fd123d09bdec3fe2500e383d
refs/heads/master: 3f6db50f1ebc4fa797445dd89af7211cafc52a92
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_h3.c
Original file line number Diff line number Diff line change
Expand Up @@ -124,12 +124,12 @@ struct platform_driver h3_panel_driver = {
},
};

static int h3_panel_drv_init(void)
static int __init h3_panel_drv_init(void)
{
return platform_driver_register(&h3_panel_driver);
}

static void h3_panel_drv_cleanup(void)
static void __exit h3_panel_drv_cleanup(void)
{
platform_driver_unregister(&h3_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_h4.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,12 @@ static struct platform_driver h4_panel_driver = {
},
};

static int h4_panel_drv_init(void)
static int __init h4_panel_drv_init(void)
{
return platform_driver_register(&h4_panel_driver);
}

static void h4_panel_drv_cleanup(void)
static void __exit h4_panel_drv_cleanup(void)
{
platform_driver_unregister(&h4_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_inn1510.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ struct platform_driver innovator1510_panel_driver = {
},
};

static int innovator1510_panel_drv_init(void)
static int __init innovator1510_panel_drv_init(void)
{
return platform_driver_register(&innovator1510_panel_driver);
}

static void innovator1510_panel_drv_cleanup(void)
static void __exit innovator1510_panel_drv_cleanup(void)
{
platform_driver_unregister(&innovator1510_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_inn1610.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,12 @@ struct platform_driver innovator1610_panel_driver = {
},
};

static int innovator1610_panel_drv_init(void)
static int __init innovator1610_panel_drv_init(void)
{
return platform_driver_register(&innovator1610_panel_driver);
}

static void innovator1610_panel_drv_cleanup(void)
static void __exit innovator1610_panel_drv_cleanup(void)
{
platform_driver_unregister(&innovator1610_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_osk.c
Original file line number Diff line number Diff line change
Expand Up @@ -127,12 +127,12 @@ struct platform_driver osk_panel_driver = {
},
};

static int osk_panel_drv_init(void)
static int __init osk_panel_drv_init(void)
{
return platform_driver_register(&osk_panel_driver);
}

static void osk_panel_drv_cleanup(void)
static void __exit osk_panel_drv_cleanup(void)
{
platform_driver_unregister(&osk_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_palmte.c
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,12 @@ struct platform_driver palmte_panel_driver = {
},
};

static int palmte_panel_drv_init(void)
static int __init palmte_panel_drv_init(void)
{
return platform_driver_register(&palmte_panel_driver);
}

static void palmte_panel_drv_cleanup(void)
static void __exit palmte_panel_drv_cleanup(void)
{
platform_driver_unregister(&palmte_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_palmtt.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,12 @@ struct platform_driver palmtt_panel_driver = {
},
};

static int palmtt_panel_drv_init(void)
static int __init palmtt_panel_drv_init(void)
{
return platform_driver_register(&palmtt_panel_driver);
}

static void palmtt_panel_drv_cleanup(void)
static void __exit palmtt_panel_drv_cleanup(void)
{
platform_driver_unregister(&palmtt_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_palmz71.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ struct platform_driver palmz71_panel_driver = {
},
};

static int palmz71_panel_drv_init(void)
static int __init palmz71_panel_drv_init(void)
{
return platform_driver_register(&palmz71_panel_driver);
}

static void palmz71_panel_drv_cleanup(void)
static void __exit palmz71_panel_drv_cleanup(void)
{
platform_driver_unregister(&palmz71_panel_driver);
}
Expand Down

0 comments on commit c486f7c

Please sign in to comment.