linux-fbdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fb: epson1355fb: Kill off dead sh support.
@ 2007-06-07  9:54 Paul Mundt
  2007-06-07 10:09 ` Antonino A. Daplas
  0 siblings, 1 reply; 2+ messages in thread
From: Paul Mundt @ 2007-06-07  9:54 UTC (permalink / raw)
  To: Antonino A. Daplas, Andrew Morton; +Cc: linux-fbdev-devel

The SH board that was the only user for this code was removed entirely
from the kernel quite some time ago, so there's no reason to leave
the stubs in place. Additionally this driver was completely broken
anyways, so there's not really a lot of point in fixing it up either.

I can't imagine that this driver gets any testing on ARM either, given
that FB_BLANK_UNBLANKING doesn't exist, and kills the build regardless
of which platform is compiling. This fixes that, too.

It wouldn't be a lot of work to finish the platform device conversion
and go with a generic 8-bit read/write_reg and kill off the architecture
dependence completely, should someone have any use for this driver.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>

--

 drivers/video/Kconfig       |    2 +-
 drivers/video/epson1355fb.c |   16 ++--------------
 2 files changed, 3 insertions(+), 15 deletions(-)

diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index 6e1f1ea..5a6b1cd 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -812,7 +812,7 @@ config FB_PVR2
 
 config FB_EPSON1355
 	bool "Epson 1355 framebuffer support"
-	depends on (FB = y) && (SUPERH || ARCH_CEIVA)
+	depends on (FB = y) && ARCH_CEIVA
 	select FB_CFB_FILLRECT
 	select FB_CFB_COPYAREA
 	select FB_CFB_IMAGEBLIT
diff --git a/drivers/video/epson1355fb.c b/drivers/video/epson1355fb.c
index ca2c54c..5575fa3 100644
--- a/drivers/video/epson1355fb.c
+++ b/drivers/video/epson1355fb.c
@@ -67,19 +67,7 @@ struct epson1355_par {
 
 /* ------------------------------------------------------------------------- */
 
-#ifdef CONFIG_SUPERH
-
-static inline u8 epson1355_read_reg(int index)
-{
-	return ctrl_inb(par.reg_addr + index);
-}
-
-static inline void epson1355_write_reg(u8 data, int index)
-{
-	ctrl_outb(data, par.reg_addr + index);
-}
-
-#elif defined(CONFIG_ARM)
+#if defined(CONFIG_ARM)
 
 # ifdef CONFIG_ARCH_CEIVA
 #  include <asm/arch/hardware.h>
@@ -289,7 +277,7 @@ static int epson1355fb_blank(int blank_mode, struct fb_info *info)
 	struct epson1355_par *par = info->par;
 
 	switch (blank_mode) {
-	case FB_BLANK_UNBLANKING:
+	case FB_BLANK_UNBLANK:
 	case FB_BLANK_NORMAL:
 		lcd_enable(par, 1);
 		backlight_enable(1);

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] fb: epson1355fb: Kill off dead sh support.
  2007-06-07  9:54 [PATCH] fb: epson1355fb: Kill off dead sh support Paul Mundt
@ 2007-06-07 10:09 ` Antonino A. Daplas
  0 siblings, 0 replies; 2+ messages in thread
From: Antonino A. Daplas @ 2007-06-07 10:09 UTC (permalink / raw)
  To: Paul Mundt; +Cc: Andrew Morton, linux-fbdev-devel

On Thu, 2007-06-07 at 18:54 +0900, Paul Mundt wrote:
> The SH board that was the only user for this code was removed entirely
> from the kernel quite some time ago, so there's no reason to leave
> the stubs in place. Additionally this driver was completely broken
> anyways, so there's not really a lot of point in fixing it up either.
> 
> I can't imagine that this driver gets any testing on ARM either, given
> that FB_BLANK_UNBLANKING doesn't exist, and kills the build regardless
> of which platform is compiling. This fixes that, too.
> 
> It wouldn't be a lot of work to finish the platform device conversion
> and go with a generic 8-bit read/write_reg and kill off the architecture
> dependence completely, should someone have any use for this driver.
> 

I wonder whether we have users for this driver at all. This hardware is
a pain because it's limited to 16-bit access only.

> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Acked-by: Antonino Daplas <adaplas@gmail.com>

Tony


-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2007-06-07 10:10 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-06-07  9:54 [PATCH] fb: epson1355fb: Kill off dead sh support Paul Mundt
2007-06-07 10:09 ` Antonino A. Daplas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).