Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc

Pull a few more ARM platform fixes from Olof Johansson:
"Apologies for back-to-back fixes pull requests, but one of the patches
below are the kind we'll see posted over and over if we don't send it
in. I hadn't done the full sanity-check of defconfig builds by the
time I sent up the other fixes yesterday or I would have included it
then.

Two patches, one dealing with the system.h fallout, the other is a
missing linux/bug.h in a place where ARRAY_SIZE() is used."

* tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc:
ARM: clps711x: fix missing include file
ARM: fix builds due to missing <asm/system_misc.h> includes

+13
+1
arch/arm/mach-at91/at91x40.c
··· 14 14 #include <linux/init.h> 15 15 #include <linux/irq.h> 16 16 #include <asm/proc-fns.h> 17 + #include <asm/system_misc.h> 17 18 #include <asm/mach/arch.h> 18 19 #include <mach/at91x40.h> 19 20 #include <mach/at91_st.h>
+1
arch/arm/mach-at91/setup.c
··· 11 11 #include <linux/pm.h> 12 12 #include <linux/of_address.h> 13 13 14 + #include <asm/system_misc.h> 14 15 #include <asm/mach/map.h> 15 16 16 17 #include <mach/hardware.h>
+1
arch/arm/mach-clps711x/edb7211-mm.c
··· 21 21 */ 22 22 #include <linux/kernel.h> 23 23 #include <linux/init.h> 24 + #include <linux/bug.h> 24 25 25 26 #include <mach/hardware.h> 26 27 #include <asm/page.h>
+1
arch/arm/mach-h720x/common.c
··· 24 24 #include <asm/dma.h> 25 25 #include <mach/hardware.h> 26 26 #include <asm/irq.h> 27 + #include <asm/system_misc.h> 27 28 #include <asm/mach/irq.h> 28 29 #include <asm/mach/map.h> 29 30 #include <mach/irqs.h>
+1
arch/arm/mach-imx/mm-imx3.c
··· 21 21 #include <linux/err.h> 22 22 23 23 #include <asm/pgtable.h> 24 + #include <asm/system_misc.h> 24 25 #include <asm/hardware/cache-l2x0.h> 25 26 #include <asm/mach/map.h> 26 27
+1
arch/arm/mach-imx/mm-imx5.c
··· 15 15 #include <linux/init.h> 16 16 #include <linux/clk.h> 17 17 18 + #include <asm/system_misc.h> 18 19 #include <asm/mach/map.h> 19 20 20 21 #include <mach/hardware.h>
+1
arch/arm/mach-ixp23xx/core.c
··· 36 36 #include <asm/irq.h> 37 37 #include <asm/tlbflush.h> 38 38 #include <asm/pgtable.h> 39 + #include <asm/system_misc.h> 39 40 40 41 #include <asm/mach/map.h> 41 42 #include <asm/mach/time.h>
+1
arch/arm/mach-ixp4xx/common.c
··· 37 37 #include <asm/page.h> 38 38 #include <asm/irq.h> 39 39 #include <asm/sched_clock.h> 40 + #include <asm/system_misc.h> 40 41 41 42 #include <asm/mach/map.h> 42 43 #include <asm/mach/irq.h>
+2
arch/arm/mach-pxa/raumfeld.c
··· 43 43 #include <linux/regulator/consumer.h> 44 44 #include <linux/delay.h> 45 45 46 + #include <asm/system_info.h> 47 + 46 48 #include <asm/mach-types.h> 47 49 #include <asm/mach/arch.h> 48 50
+1
arch/arm/mach-shark/core.c
··· 15 15 #include <asm/mach-types.h> 16 16 #include <asm/leds.h> 17 17 #include <asm/param.h> 18 + #include <asm/system_misc.h> 18 19 19 20 #include <asm/mach/map.h> 20 21 #include <asm/mach/arch.h>
+1
arch/arm/mach-w90x900/dev.c
··· 27 27 #include <linux/spi/spi.h> 28 28 #include <linux/spi/flash.h> 29 29 30 + #include <asm/system_misc.h> 30 31 #include <asm/mach/arch.h> 31 32 #include <asm/mach/map.h> 32 33 #include <asm/mach/irq.h>
+1
arch/arm/plat-s3c24xx/cpu.c
··· 36 36 #include <asm/irq.h> 37 37 #include <asm/cacheflush.h> 38 38 #include <asm/system_info.h> 39 + #include <asm/system_misc.h> 39 40 40 41 #include <asm/mach/arch.h> 41 42 #include <asm/mach/map.h>