linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] m68k patches
@ 2006-06-23 18:30 zippel
  2006-06-23 18:30 ` [PATCH 01/21] fix uaccess.h for gcc-3.x zippel
                   ` (20 more replies)
  0 siblings, 21 replies; 26+ messages in thread
From: zippel @ 2006-06-23 18:30 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Hi,

A series of m68k related patches, the first patches are mostly bug fixes
and the rest are a major cleanup of the m68k irq system, which gets it a
lot closer to the generic code.

bye, Roman

--

 arch/m68k/amiga/amiga_ksyms.c  |    2 
 arch/m68k/amiga/amiints.c      |  384 +++----------------------------
 arch/m68k/amiga/cia.c          |  156 ++++++------
 arch/m68k/amiga/config.c       |   15 -
 arch/m68k/apollo/Makefile      |    2 
 arch/m68k/apollo/config.c      |   24 -
 arch/m68k/apollo/dn_ints.c     |  137 ++---------
 arch/m68k/atari/ataints.c      |  278 +++-------------------
 arch/m68k/atari/config.c       |   11 
 arch/m68k/bvme6000/Makefile    |    2 
 arch/m68k/bvme6000/bvmeints.c  |  160 -------------
 arch/m68k/bvme6000/config.c    |   21 -
 arch/m68k/hp300/Makefile       |    2 
 arch/m68k/hp300/config.c       |   11 
 arch/m68k/hp300/ints.c         |  175 --------------
 arch/m68k/hp300/ints.h         |    9 
 arch/m68k/hp300/time.c         |    3 
 arch/m68k/kernel/Makefile      |    4 
 arch/m68k/kernel/dma.c         |  129 ++++++++++
 arch/m68k/kernel/entry.S       |  100 +++-----
 arch/m68k/kernel/ints.c        |  378 ++++++++++++++++++++----------
 arch/m68k/kernel/m68k_ksyms.c  |    2 
 arch/m68k/kernel/setup.c       |    3 
 arch/m68k/kernel/traps.c       |  180 ++++++--------
 arch/m68k/mac/baboon.c         |    2 
 arch/m68k/mac/config.c         |   20 -
 arch/m68k/mac/iop.c            |    2 
 arch/m68k/mac/macints.c        |  503 ++++++++++-------------------------------
 arch/m68k/mac/oss.c            |   14 -
 arch/m68k/mac/psc.c            |   10 
 arch/m68k/mac/via.c            |   18 -
 arch/m68k/mm/kmap.c            |    6 
 arch/m68k/mvme147/147ints.c    |  145 -----------
 arch/m68k/mvme147/Makefile     |    2 
 arch/m68k/mvme147/config.c     |   22 -
 arch/m68k/mvme16x/16xints.c    |  149 ------------
 arch/m68k/mvme16x/Makefile     |    2 
 arch/m68k/mvme16x/config.c     |   23 -
 arch/m68k/q40/config.c         |   13 -
 arch/m68k/q40/q40ints.c        |  485 +++++++++++++--------------------------
 arch/m68k/sun3/config.c        |    8 
 arch/m68k/sun3/sun3ints.c      |  210 ++---------------
 arch/m68k/sun3x/config.c       |    7 
 drivers/block/amiflop.c        |    1 
 drivers/macintosh/via-pmu68k.c |    3 
 drivers/net/sun3lance.c        |    2 
 drivers/scsi/mac_esp.c         |    7 
 drivers/scsi/mac_scsi.c        |    7 
 drivers/scsi/sun3x_esp.c       |    8 
 include/asm-m68k/amigaints.h   |   94 +++----
 include/asm-m68k/apollohw.h    |    4 
 include/asm-m68k/atari_stdma.h |    2 
 include/asm-m68k/atariints.h   |   11 
 include/asm-m68k/bvme6000hw.h  |   30 +-
 include/asm-m68k/cacheflush.h  |   40 +--
 include/asm-m68k/dma-mapping.h |   90 ++++++-
 include/asm-m68k/irq.h         |  110 ++++----
 include/asm-m68k/mac_oss.h     |   10 
 include/asm-m68k/machdep.h     |    6 
 include/asm-m68k/macintosh.h   |   10 
 include/asm-m68k/macints.h     |   14 -
 include/asm-m68k/mvme147hw.h   |   44 +--
 include/asm-m68k/mvme16xhw.h   |   40 +--
 include/asm-m68k/scatterlist.h |    9 
 include/asm-m68k/signal.h      |   19 +
 include/asm-m68k/sun3ints.h    |   22 -
 include/asm-m68k/traps.h       |    7 
 include/asm-m68k/uaccess.h     |  234 ++++++++++---------
 68 files changed, 1519 insertions(+), 3134 deletions(-)


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

end of thread, other threads:[~2006-06-27  1:34 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-06-23 18:30 [PATCH 00/21] m68k patches zippel
2006-06-23 18:30 ` [PATCH 01/21] fix uaccess.h for gcc-3.x zippel
2006-06-23 18:30 ` [PATCH 02/21] fix constraints of the signal functions and some cleanup zippel
2006-06-23 18:30 ` [PATCH 03/21] fix __iounmap for 030 zippel
2006-06-23 18:31 ` [PATCH 04/21] small flush_icache() cleanup zippel
2006-06-23 18:31 ` [PATCH 05/21] Add the generic dma API functions zippel
2006-06-23 18:31 ` [PATCH 06/21] dma API addition zippel
2006-06-23 18:31 ` [PATCH 07/21] fix show_registers() zippel
2006-06-23 18:31 ` [PATCH 08/21] gcc 4 fix zippel
2006-06-23 19:35   ` Al Viro
2006-06-23 20:05     ` Roman Zippel
2006-06-24  4:45       ` Finn Thain
2006-06-26 17:43         ` Brad Boyer
2006-06-23 18:31 ` [PATCH 09/21] separate handler for auto and user vector interrupt zippel
2006-06-23 18:31 ` [PATCH 10/21] cleanup generic irq names zippel
2006-06-23 18:31 ` [PATCH 11/21] cleanup amiga irq numbering zippel
2006-06-23 18:31 ` [PATCH 12/21] introduce irq controller zippel
2006-06-23 18:31 ` [PATCH 13/21] convert generic irq code to " zippel
2006-06-23 18:31 ` [PATCH 14/21] convert amiga irq code zippel
2006-06-23 18:31 ` [PATCH 15/21] convert apollo " zippel
2006-06-23 18:31 ` [PATCH 16/21] convert atari " zippel
2006-06-23 18:31 ` [PATCH 17/21] convert hp300 " zippel
2006-06-23 18:31 ` [PATCH 18/21] convert mac " zippel
2006-06-23 18:31 ` [PATCH 19/21] convert q40 " zippel
2006-06-23 18:31 ` [PATCH 20/21] convert sun3 " zippel
2006-06-23 18:31 ` [PATCH 21/21] convert VME " zippel

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).