diff options
author | axel lin <axel.lin@gmail.com> | 2011-02-22 01:52:42 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-05-24 15:59:48 +0900 |
commit | 1db41e032d563eb47deab40dc5595be306b143ba (patch) | |
tree | b272fafc634aaccee1b6680d65e33788b9a7c994 /drivers/video | |
parent | d15660a1e6b70c75456c72050e52af63bbeb05a3 (diff) | |
download | op-kernel-dev-1db41e032d563eb47deab40dc5595be306b143ba.zip op-kernel-dev-1db41e032d563eb47deab40dc5595be306b143ba.tar.gz |
video: da8xx-fb: fix section mismatch warning
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/da8xx-fb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/da8xx-fb.c b/drivers/video/da8xx-fb.c index 8b7d473..fcdac87 100644 --- a/drivers/video/da8xx-fb.c +++ b/drivers/video/da8xx-fb.c @@ -899,7 +899,7 @@ static struct fb_ops da8xx_fb_ops = { .fb_blank = cfb_blank, }; -static int __init fb_probe(struct platform_device *device) +static int __devinit fb_probe(struct platform_device *device) { struct da8xx_lcdc_platform_data *fb_pdata = device->dev.platform_data; @@ -1165,7 +1165,7 @@ static int fb_resume(struct platform_device *dev) static struct platform_driver da8xx_fb_driver = { .probe = fb_probe, - .remove = fb_remove, + .remove = __devexit_p(fb_remove), .suspend = fb_suspend, .resume = fb_resume, .driver = { |