]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/video/s3c2410fb.c
Pull mca-check-psp into release branch
[linux-2.6-omap-h63xx.git] / drivers / video / s3c2410fb.c
index 5ab79afb53b78bdce439488c1fa53ce457290471..855a6778b9eba115879bdbde91d4372f414b9d81 100644 (file)
@@ -86,6 +86,7 @@
 #include <linux/interrupt.h>
 #include <linux/workqueue.h>
 #include <linux/wait.h>
+#include <linux/platform_device.h>
 
 #include <asm/io.h>
 #include <asm/uaccess.h>
@@ -494,7 +495,6 @@ static struct fb_ops s3c2410fb_ops = {
        .fb_fillrect    = cfb_fillrect,
        .fb_copyarea    = cfb_copyarea,
        .fb_imageblit   = cfb_imageblit,
-       .fb_cursor      = soft_cursor,
 };
 
 
@@ -847,37 +847,32 @@ static int s3c2410fb_remove(struct device *dev)
 
 /* suspend and resume support for the lcd controller */
 
-static int s3c2410fb_suspend(struct device *dev, pm_message_t state, u32 level)
+static int s3c2410fb_suspend(struct device *dev, pm_message_t state)
 {
        struct fb_info     *fbinfo = dev_get_drvdata(dev);
        struct s3c2410fb_info *info = fbinfo->par;
 
-       if (level == SUSPEND_DISABLE || level == SUSPEND_POWER_DOWN) {
-               s3c2410fb_stop_lcd();
+       s3c2410fb_stop_lcd();
 
-               /* sleep before disabling the clock, we need to ensure
-                * the LCD DMA engine is not going to get back on the bus
-                * before the clock goes off again (bjd) */
+       /* sleep before disabling the clock, we need to ensure
+        * the LCD DMA engine is not going to get back on the bus
+        * before the clock goes off again (bjd) */
 
-               msleep(1);
-               clk_disable(info->clk);
-       }
+       msleep(1);
+       clk_disable(info->clk);
 
        return 0;
 }
 
-static int s3c2410fb_resume(struct device *dev, u32 level)
+static int s3c2410fb_resume(struct device *dev)
 {
        struct fb_info     *fbinfo = dev_get_drvdata(dev);
        struct s3c2410fb_info *info = fbinfo->par;
 
-       if (level == RESUME_ENABLE) {
-               clk_enable(info->clk);
-               msleep(1);
-
-               s3c2410fb_init_registers(info);
+       clk_enable(info->clk);
+       msleep(1);
 
-       }
+       s3c2410fb_init_registers(info);
 
        return 0;
 }
@@ -889,6 +884,7 @@ static int s3c2410fb_resume(struct device *dev, u32 level)
 
 static struct device_driver s3c2410fb_driver = {
        .name           = "s3c2410-lcd",
+       .owner          = THIS_MODULE,
        .bus            = &platform_bus_type,
        .probe          = s3c2410fb_probe,
        .suspend        = s3c2410fb_suspend,