The following changes since commit 1bae4ce27c9c90344f23c65ea6966c50ffeae2f5:
Linux 2.6.38-rc2 (2011-01-21 19:01:34 -0800)
are available in the git repository at: git://git.linaro.org/people/dmart/linux-2.6-arm.git dirty/arm/omap-thumb2+merged
Dave Martin (9): ARM: omap4: Provide do_wfi() for Thumb-2 ARM: omap4: Convert END() to ENDPROC() for correct linkage with CONFIG_THUMB2_KERNEL ARM: omap3: Remove hand-encoded SMC instructions ARM: omap3: Thumb-2 compatibility for sram34xx.S ARM: omap3: Thumb-2 compatibility for sleep34xx.S ARM: Thumb-2: Symbol manipulation macros for function body copying ARM: Correct WFE() in asm/spinlock.h for Thumb-2 ARM: Add local symbols in relocate_kernel.S to work around gas bugs ARM: omap3: Work around assembler errors in sleep34xx.S
Jean Pihet (2): omap: use fncpy to copy the PM code functions to SRAM OMAP: fix fncpy API call
Ming Lei (1): arm: fix oops in sched_clock_poll
Russell King (3): ARM: bitops: ensure set/clear/change bitops take a word-aligned pointer ARM: bitops: switch set/clear/change bitops to use ldrex/strex ARM: v6k: remove CPU_32v6K dependencies in asm/spinlock.h
arch/arm/include/asm/bitops.h | 60 +++++--------- arch/arm/include/asm/fncpy.h | 94 +++++++++++++++++++++++ arch/arm/include/asm/spinlock.h | 53 ++++++++++--- arch/arm/kernel/armksyms.c | 18 ++--- arch/arm/kernel/relocate_kernel.S | 12 ++- arch/arm/kernel/sched_clock.c | 4 +- arch/arm/lib/bitops.h | 46 +++++++----- arch/arm/lib/changebit.S | 10 +-- arch/arm/lib/clearbit.S | 11 +-- arch/arm/lib/setbit.S | 11 +-- arch/arm/lib/testchangebit.S | 9 +-- arch/arm/lib/testclearbit.S | 9 +-- arch/arm/lib/testsetbit.S | 9 +-- arch/arm/mach-omap1/pm.h | 6 +- arch/arm/mach-omap1/sleep.S | 3 + arch/arm/mach-omap1/sram.S | 1 + arch/arm/mach-omap2/include/mach/omap4-common.h | 4 + arch/arm/mach-omap2/omap-headsmp.S | 2 +- arch/arm/mach-omap2/omap44xx-smc.S | 8 +- arch/arm/mach-omap2/pm.h | 2 +- arch/arm/mach-omap2/sleep24xx.S | 2 + arch/arm/mach-omap2/sleep34xx.S | 71 ++++++++++++++---- arch/arm/mach-omap2/sram242x.S | 3 + arch/arm/mach-omap2/sram243x.S | 3 + arch/arm/mach-omap2/sram34xx.S | 37 +++++++-- arch/arm/plat-omap/include/plat/sram.h | 14 +++- arch/arm/plat-omap/sram.c | 14 ++- 27 files changed, 350 insertions(+), 166 deletions(-) create mode 100644 arch/arm/include/asm/fncpy.h
On Tue, 22 Feb 2011, Dave Martin wrote:
The following changes since commit 1bae4ce27c9c90344f23c65ea6966c50ffeae2f5:
Linux 2.6.38-rc2 (2011-01-21 19:01:34 -0800)
are available in the git repository at: git://git.linaro.org/people/dmart/linux-2.6-arm.git dirty/arm/omap-thumb2+merged
Dave Martin (9): ARM: omap4: Provide do_wfi() for Thumb-2 ARM: omap4: Convert END() to ENDPROC() for correct linkage with CONFIG_THUMB2_KERNEL ARM: omap3: Remove hand-encoded SMC instructions ARM: omap3: Thumb-2 compatibility for sram34xx.S ARM: omap3: Thumb-2 compatibility for sleep34xx.S ARM: Thumb-2: Symbol manipulation macros for function body copying ARM: Correct WFE() in asm/spinlock.h for Thumb-2
I have that one from mainline already.
ARM: Add local symbols in relocate_kernel.S to work around gas bugs ARM: omap3: Work around assembler errors in sleep34xx.S
Jean Pihet (2): omap: use fncpy to copy the PM code functions to SRAM OMAP: fix fncpy API call
Ming Lei (1): arm: fix oops in sched_clock_poll
This is the wrong fix. A better fix exists in mainline and linaro-2.6.38 now.
Russell King (3): ARM: bitops: ensure set/clear/change bitops take a word-aligned pointer ARM: bitops: switch set/clear/change bitops to use ldrex/strex ARM: v6k: remove CPU_32v6K dependencies in asm/spinlock.h
Got those from RMK's tree too. In general I prefer keeping original commit IDs when possible.
May I ask you to rebase on top of the latest linaro-2.6.38 (which acquired a bunch of patches today) so to filter out the unneeded patches please? You could include the module signature patch as well.
Nicolas