Commit a8ce4be7 authored by Henrik Kretzschmar's avatar Henrik Kretzschmar Committed by Linus Torvalds

s3c2410fb: fix sections

Since the drivers probe calls were changed from .init.text to
.devinit.text in commit c2e13037
("platform-drivers: move probe to .devinit.text in drivers/video") all the
function from .init.text should be moved to .devinit.text, too.

The drivers remove calls can also be move from .text to .devexit.text.
Signed-off-by: default avatarHenrik Kretzschmar <henne@nachtwindheim.de>
Cc: Vincent Sanders <support@simtec.co.uk>
Acked-by: default avatarArnaud Patard <arnaud.patard@rtp-net.org>
Tested-by: default avatarArnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e88a0f46
...@@ -631,7 +631,7 @@ static struct fb_ops s3c2410fb_ops = { ...@@ -631,7 +631,7 @@ static struct fb_ops s3c2410fb_ops = {
* cache. Once this area is remapped, all virtual memory * cache. Once this area is remapped, all virtual memory
* access to the video memory should occur at the new region. * access to the video memory should occur at the new region.
*/ */
static int __init s3c2410fb_map_video_memory(struct fb_info *info) static int __devinit s3c2410fb_map_video_memory(struct fb_info *info)
{ {
struct s3c2410fb_info *fbi = info->par; struct s3c2410fb_info *fbi = info->par;
dma_addr_t map_dma; dma_addr_t map_dma;
...@@ -814,7 +814,7 @@ static inline void s3c2410fb_cpufreq_deregister(struct s3c2410fb_info *info) ...@@ -814,7 +814,7 @@ static inline void s3c2410fb_cpufreq_deregister(struct s3c2410fb_info *info)
static char driver_name[] = "s3c2410fb"; static char driver_name[] = "s3c2410fb";
static int __init s3c24xxfb_probe(struct platform_device *pdev, static int __devinit s3c24xxfb_probe(struct platform_device *pdev,
enum s3c_drv_type drv_type) enum s3c_drv_type drv_type)
{ {
struct s3c2410fb_info *info; struct s3c2410fb_info *info;
...@@ -1018,7 +1018,7 @@ static int __devinit s3c2412fb_probe(struct platform_device *pdev) ...@@ -1018,7 +1018,7 @@ static int __devinit s3c2412fb_probe(struct platform_device *pdev)
/* /*
* Cleanup * Cleanup
*/ */
static int s3c2410fb_remove(struct platform_device *pdev) static int __devexit s3c2410fb_remove(struct platform_device *pdev)
{ {
struct fb_info *fbinfo = platform_get_drvdata(pdev); struct fb_info *fbinfo = platform_get_drvdata(pdev);
struct s3c2410fb_info *info = fbinfo->par; struct s3c2410fb_info *info = fbinfo->par;
...@@ -1096,7 +1096,7 @@ static int s3c2410fb_resume(struct platform_device *dev) ...@@ -1096,7 +1096,7 @@ static int s3c2410fb_resume(struct platform_device *dev)
static struct platform_driver s3c2410fb_driver = { static struct platform_driver s3c2410fb_driver = {
.probe = s3c2410fb_probe, .probe = s3c2410fb_probe,
.remove = s3c2410fb_remove, .remove = __devexit_p(s3c2410fb_remove),
.suspend = s3c2410fb_suspend, .suspend = s3c2410fb_suspend,
.resume = s3c2410fb_resume, .resume = s3c2410fb_resume,
.driver = { .driver = {
...@@ -1107,7 +1107,7 @@ static struct platform_driver s3c2410fb_driver = { ...@@ -1107,7 +1107,7 @@ static struct platform_driver s3c2410fb_driver = {
static struct platform_driver s3c2412fb_driver = { static struct platform_driver s3c2412fb_driver = {
.probe = s3c2412fb_probe, .probe = s3c2412fb_probe,
.remove = s3c2410fb_remove, .remove = __devexit_p(s3c2410fb_remove),
.suspend = s3c2410fb_suspend, .suspend = s3c2410fb_suspend,
.resume = s3c2410fb_resume, .resume = s3c2410fb_resume,
.driver = { .driver = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment