Skip to content

Commit

Permalink
sh: mach-titan: Kill off unused PIO port mangling.
Browse files Browse the repository at this point in the history
Nothing is using this, kill it off. Fixing up access sizes can be done
with trapped I/O for anyone wanting to make use of this for devices that
need it, everything else is already pure MMIO.

Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
Paul Mundt committed Jan 28, 2010
1 parent 7013109 commit f655f5e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 136 deletions.
1 change: 0 additions & 1 deletion arch/sh/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ machdir-$(CONFIG_SH_X3PROTO) += mach-x3proto
machdir-$(CONFIG_SH_SH7763RDP) += mach-sh7763rdp
machdir-$(CONFIG_SH_SH4202_MICRODEV) += mach-microdev
machdir-$(CONFIG_SH_LANDISK) += mach-landisk
machdir-$(CONFIG_SH_TITAN) += mach-titan
machdir-$(CONFIG_SH_LBOX_RE2) += mach-lboxre2
machdir-$(CONFIG_SH_CAYMAN) += mach-cayman
machdir-$(CONFIG_SH_RSK) += mach-rsk
Expand Down
1 change: 1 addition & 0 deletions arch/sh/boards/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ obj-$(CONFIG_SH_SHMIN) += board-shmin.o
obj-$(CONFIG_SH_EDOSK7760) += board-edosk7760.o
obj-$(CONFIG_SH_ESPT) += board-espt.o
obj-$(CONFIG_SH_POLARIS) += board-polaris.o
obj-$(CONFIG_SH_TITAN) += board-titan.o
24 changes: 2 additions & 22 deletions arch/sh/boards/mach-titan/setup.c → arch/sh/boards/board-titan.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,6 @@ static void __init init_titan_irq(void)
}

static struct sh_machine_vector mv_titan __initmv = {
.mv_name = "Titan",

.mv_inb = titan_inb,
.mv_inw = titan_inw,
.mv_inl = titan_inl,
.mv_outb = titan_outb,
.mv_outw = titan_outw,
.mv_outl = titan_outl,

.mv_inb_p = titan_inb_p,
.mv_inw_p = titan_inw,
.mv_inl_p = titan_inl,
.mv_outb_p = titan_outb_p,
.mv_outw_p = titan_outw,
.mv_outl_p = titan_outl,

.mv_insl = titan_insl,
.mv_outsl = titan_outsl,

.mv_ioport_map = titan_ioport_map,

.mv_init_irq = init_titan_irq,
.mv_name = "Titan",
.mv_init_irq = init_titan_irq,
};
5 changes: 0 additions & 5 deletions arch/sh/boards/mach-titan/Makefile

This file was deleted.

108 changes: 0 additions & 108 deletions arch/sh/boards/mach-titan/io.c

This file was deleted.

0 comments on commit f655f5e

Please sign in to comment.