Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 173779
b: refs/heads/master
c: b89ea90
h: refs/heads/master
i:
  173777: 8cc5ef3
  173775: 69c0d60
v: v3
  • Loading branch information
Peter Huewe authored and Jiri Kosina committed Nov 9, 2009
1 parent 4568f89 commit ed1bfae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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: 06fe9fb4182177fb046e6d934f80254dd90956ea
refs/heads/master: b89ea90d402c13c8dd4d5dfc8d4a0b6efc5492df
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_ams_delta.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,12 @@ struct platform_driver ams_delta_panel_driver = {
},
};

static int ams_delta_panel_drv_init(void)
static int __init ams_delta_panel_drv_init(void)
{
return platform_driver_register(&ams_delta_panel_driver);
}

static void ams_delta_panel_drv_cleanup(void)
static void __exit ams_delta_panel_drv_cleanup(void)
{
platform_driver_unregister(&ams_delta_panel_driver);
}
Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/video/omap/lcd_mipid.c
Original file line number Diff line number Diff line change
Expand Up @@ -607,15 +607,15 @@ static struct spi_driver mipid_spi_driver = {
.remove = __devexit_p(mipid_spi_remove),
};

static int mipid_drv_init(void)
static int __init mipid_drv_init(void)
{
spi_register_driver(&mipid_spi_driver);

return 0;
}
module_init(mipid_drv_init);

static void mipid_drv_cleanup(void)
static void __exit mipid_drv_cleanup(void)
{
spi_unregister_driver(&mipid_spi_driver);
}
Expand Down

0 comments on commit ed1bfae

Please sign in to comment.