sh: Remove sh_pcic_io_xxx function from Solution Engine IO code

Previous thread: sh: Fix Kconfig of AP-325RXA by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)

Next thread: SH7619 add ethernet controler support by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)
From: Linux Kernel Mailing List
Date: Monday, July 28, 2008 - 10:07 am

Gitweb:     http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fafb7a...
Commit:     fafb7a97de73a917a875048801bd81cf64f79e4a
Parent:     7c93d87d09813e32724b572530abe5b5405ab1d1
Author:     Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
AuthorDate: Tue Jun 24 13:00:52 2008 +0900
Committer:  Paul Mundt <lethal@linux-sh.org>
CommitDate: Mon Jul 28 18:10:32 2008 +0900

    sh: Remove sh_pcic_io_xxx function from Solution Engine IO code
    
    sh_pcic_io_xxx function are very old.
    In linux-2.4, mrshpc_ss socket driver used this function.
    But there is not this driver to the present kernel.
    I deleted these cords and checked operation.
    
    Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
    Signed-off-by: Paul Mundt <lethal@linux-sh.org>
---
 arch/sh/boards/se/770x/io.c |   59 ++++++++++--------------------------------
 1 files changed, 14 insertions(+), 45 deletions(-)

diff --git a/arch/sh/boards/se/770x/io.c b/arch/sh/boards/se/770x/io.c
index c455047..b1ec085 100644
--- a/arch/sh/boards/se/770x/io.c
+++ b/arch/sh/boards/se/770x/io.c
@@ -1,25 +1,13 @@
-/* $Id: io.c,v 1.7 2006/02/05 21:55:29 lethal Exp $
- *
- * linux/arch/sh/kernel/io_se.c
- *
+/*
  * Copyright (C) 2000  Kazumoto Kojima
  *
  * I/O routine for Hitachi SolutionEngine.
- *
  */
-
 #include <linux/kernel.h>
 #include <linux/types.h>
 #include <asm/io.h>
 #include <asm/se.h>
 
-/* SH pcmcia io window base, start and end.  */
-int sh_pcic_io_wbase = 0xb8400000;
-int sh_pcic_io_start;
-int sh_pcic_io_stop;
-int sh_pcic_io_type;
-int sh_pcic_io_dummy;
-
 /* MS7750 requires special versions of in*, out* routines, since
    PC-like io ports are located at upper half byte of 16-bit word which
    can be accessed only with 16-bit wide.  */
@@ -33,8 +21,6 @@ port2adr(unsigned int port)
 		return (volatile __u16 *) (PA_MRSHPC + (port - 0x2000));
 	else if (port >= 0x1000)
 		return (volatile __u16 *) ...
Previous thread: sh: Fix Kconfig of AP-325RXA by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)

Next thread: SH7619 add ethernet controler support by Linux Kernel Mailing List on Monday, July 28, 2008 - 10:07 am. (1 message)