public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Ungerer <gerg@snapgear.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Linux Kernel Development <linux-kernel@vger.kernel.org>,
	Linux/m68k <linux-m68k@vger.kernel.org>,
	uClinux development list <uclinux-dev@uclinux.org>,
	Greg Ungerer <gerg@uclinux.org>
Subject: [git pull] m68knommu arch updates
Date: Tue, 26 Jul 2011 12:19:03 +1000	[thread overview]
Message-ID: <4E2E2417.9060407@snapgear.com> (raw)


Hi Linus,

Can you please pull the m68knommu git tree, for-linus branch:

git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus

Mostly this is more m68k/m68knommu merge and cleanup work. Still more
of that to come too. A couple of minor fixes as well.

Thanks
Greg



The following changes since commit b6844e8f64920cdee620157252169ba63afb0c89:
   Linus Torvalds (1):
         Merge branch 'for-linus' of master.kernel.org:/home/rmk/linux-2.6-arm

are available in the git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git for-linus

Geert Uytterhoeven (4):
       m68knommu: Make empty_zero_page "void *", like on m68k
       m68knommu: Fix printk() format in free_initrd_mem()
       m68knommu: Move forward declaration of do_IRQ() from machdep.h to irq.h
       m68k: Revive reporting of spurious interrupts

Greg Ungerer (9):
       m68k: merge the non-mmu and mmu versions of module.c
       m68k: merge MMU and non-MMU versions of asm/hardirq.h
       m68k: merge MMU and non MMU versions of system.h
       m68k: merge mmu and non-mmu bitops.h
       m68knommu: merge ColdFire 5206 and 5206e platform code
       m68knommu: correctly use trap_init
       m68k: merge and clean up delay.h files
       m68k: use CPU_HAS_NO_BITFIELDS for signal functions
       m68k: fix some atomic operation asm address modes for ColdFire

  arch/m68k/Kconfig                       |    4 +
  arch/m68k/Kconfig.nommu                 |    3 +
  arch/m68k/Makefile_no                   |    2 +-
  arch/m68k/include/asm/atomic.h          |    6 +-
  arch/m68k/include/asm/bitops.h          |  531 ++++++++++++++++++++++++++++++-
  arch/m68k/include/asm/bitops_mm.h       |  501 -----------------------------
  arch/m68k/include/asm/bitops_no.h       |  333 -------------------
  arch/m68k/include/asm/delay.h           |   97 ++++++-
  arch/m68k/include/asm/delay_mm.h        |   57 ----
  arch/m68k/include/asm/delay_no.h        |   76 -----
  arch/m68k/include/asm/entry_no.h        |   12 +-
  arch/m68k/include/asm/hardirq.h         |   35 ++-
  arch/m68k/include/asm/hardirq_mm.h      |   16 -
  arch/m68k/include/asm/hardirq_no.h      |   19 --
  arch/m68k/include/asm/irq.h             |   11 +-
  arch/m68k/include/asm/machdep.h         |    1 -
  arch/m68k/include/asm/module.h          |   31 +-
  arch/m68k/include/asm/signal.h          |   15 +-
  arch/m68k/include/asm/system.h          |  194 +++++++++++-
  arch/m68k/include/asm/system_mm.h       |  193 -----------
  arch/m68k/include/asm/system_no.h       |  153 ---------
  arch/m68k/include/asm/traps.h           |    1 -
  arch/m68k/kernel/irq.c                  |   10 +
  arch/m68k/kernel/module.c               |  130 ++++++++-
  arch/m68k/kernel/module_mm.c            |  128 --------
  arch/m68k/kernel/module_no.c            |   92 ------
  arch/m68k/kernel/traps_no.c             |    4 -
  arch/m68k/lib/Makefile                  |    2 +-
  arch/m68k/lib/delay.c                   |   21 --
  arch/m68k/mm/init_no.c                  |   11 +-
  arch/m68k/platform/5206/config.c        |    6 +
  arch/m68k/platform/5206e/Makefile       |   18 -
  arch/m68k/platform/5206e/config.c       |  127 --------
  arch/m68k/platform/5206e/gpio.c         |   49 ---
  arch/m68k/platform/5272/intc.c          |    2 -
  arch/m68k/platform/68328/entry.S        |   15 +-
  arch/m68k/platform/68328/ints.c         |   10 +-
  arch/m68k/platform/68360/entry.S        |   15 +-
  arch/m68k/platform/68360/ints.c         |   11 +-
  arch/m68k/platform/coldfire/entry.S     |   24 +-
  arch/m68k/platform/coldfire/intc-2.c    |    2 -
  arch/m68k/platform/coldfire/intc-simr.c |    2 -
  arch/m68k/platform/coldfire/intc.c      |    1 -
  arch/m68k/platform/coldfire/vectors.c   |   10 +-
  44 files changed, 1074 insertions(+), 1907 deletions(-)
  delete mode 100644 arch/m68k/include/asm/bitops_mm.h
  delete mode 100644 arch/m68k/include/asm/bitops_no.h
  delete mode 100644 arch/m68k/include/asm/delay_mm.h
  delete mode 100644 arch/m68k/include/asm/delay_no.h
  delete mode 100644 arch/m68k/include/asm/hardirq_mm.h
  delete mode 100644 arch/m68k/include/asm/hardirq_no.h
  delete mode 100644 arch/m68k/include/asm/system_mm.h
  delete mode 100644 arch/m68k/include/asm/system_no.h
  delete mode 100644 arch/m68k/kernel/module_mm.c
  delete mode 100644 arch/m68k/kernel/module_no.c
  delete mode 100644 arch/m68k/lib/delay.c
  delete mode 100644 arch/m68k/platform/5206e/Makefile
  delete mode 100644 arch/m68k/platform/5206e/config.c
  delete mode 100644 arch/m68k/platform/5206e/gpio.c

             reply	other threads:[~2011-07-26  2:29 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-26  2:19 Greg Ungerer [this message]
  -- strict thread matches above, loose matches on Subject: below --
2011-05-24  6:30 [git pull] m68knommu arch updates Greg Ungerer
2011-01-18 10:35 Greg Ungerer
2010-10-25  0:29 Greg Ungerer
2010-05-25  6:19 Greg Ungerer
2010-03-09  3:47 Greg Ungerer
2009-12-09  7:58 Greg Ungerer
2009-12-10  3:13 ` Linus Torvalds
2009-12-10  4:54   ` Greg Ungerer
2009-04-02  4:53 Greg Ungerer
2008-07-24  7:22 Greg Ungerer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E2E2417.9060407@snapgear.com \
    --to=gerg@snapgear.com \
    --cc=gerg@uclinux.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-m68k@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    --cc=uclinux-dev@uclinux.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox