[ARM] 5209/1: metronomefb: changes to use platform framebuffer

Previous thread: [ARM] 5186/1: metronomefb: convert printk to dev_dbg/err messages by Linux Kernel Mailing List on Saturday, October 11, 2008 - 11:10 am. (1 message)

Next thread: [ARM] 5200/1: am200epd: use fb notifiers and gpio api by Linux Kernel Mailing List on Saturday, October 11, 2008 - 11:10 am. (1 message)
From: Linux Kernel Mailing List
Date: Saturday, October 11, 2008 - 11:10 am

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e93550...
Commit:     e935508515cc5592d7c80d7f51f21103f73efb2d
Parent:     28501336f8b9fb5ec6c2d7bb07b4dfa88ceed272
Author:     Jaya Kumar <jayakumar.lkml@gmail.com>
AuthorDate: Tue Aug 19 11:17:55 2008 +0100
Committer:  Russell King <rmk+kernel@arm.linux.org.uk>
CommitDate: Tue Aug 26 17:01:12 2008 +0100

    [ARM] 5209/1: metronomefb: changes to use platform framebuffer
    
    These changes are used in order to support the use of the framebuffer
    provided by the platform device driver rather than to directly allocate one.
    Other changes are cleanup to error handling and order of release.
    
    Signed-off-by: Jaya Kumar <jayakumar.lkml@gmail.com>
    Acked-by: Krzysztof Helt <krzysztof.h1@wp.pl>
    Acked-by: Eric Miao <eric.miao@marvell.com>
    Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
---
 drivers/video/Kconfig       |   18 +++-
 drivers/video/metronomefb.c |  241 ++++++++++++++++++++++++-------------------
 include/video/metronomefb.h |   31 +++---
 3 files changed, 160 insertions(+), 130 deletions(-)

diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index 70d135e..6fd4a2f 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -172,11 +172,6 @@ config FB_DEFERRED_IO
 	bool
 	depends on FB
 
-config FB_METRONOME
-	tristate
-	depends on FB
-	depends on FB_DEFERRED_IO
-
 config FB_HECUBA
 	tristate
 	depends on FB
@@ -2041,6 +2036,19 @@ config XEN_FBDEV_FRONTEND
 	  frame buffer driver.  It communicates with a back-end
 	  in another domain.
 
+config FB_METRONOME
+	tristate "E-Ink Metronome/8track controller support"
+	depends on FB
+	select FB_SYS_FILLRECT
+	select FB_SYS_COPYAREA
+	select FB_SYS_IMAGEBLIT
+	select FB_SYS_FOPS
+	select FB_DEFERRED_IO
+	help
+	  This driver implements support for the E-Ink Metronome
+	  controller. The pre-release name for this device was 8track
+	  ...
Previous thread: [ARM] 5186/1: metronomefb: convert printk to dev_dbg/err messages by Linux Kernel Mailing List on Saturday, October 11, 2008 - 11:10 am. (1 message)

Next thread: [ARM] 5200/1: am200epd: use fb notifiers and gpio api by Linux Kernel Mailing List on Saturday, October 11, 2008 - 11:10 am. (1 message)