]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
Merge branch 'v3.2-rc7' into next/pm
authorArnd Bergmann <arnd@arndb.de>
Tue, 3 Jan 2012 20:27:45 +0000 (20:27 +0000)
committerArnd Bergmann <arnd@arndb.de>
Tue, 3 Jan 2012 20:27:45 +0000 (20:27 +0000)
Conflicts:
arch/arm/kernel/setup.c
arch/arm/mach-shmobile/board-kota2.c

1  2 
arch/arm/kernel/perf_event.c
arch/arm/kernel/setup.c
arch/arm/mach-omap2/board-rx51-peripherals.c
arch/arm/mach-s5pv210/mach-smdkv210.c
arch/arm/mach-shmobile/board-ag5evm.c
arch/arm/mach-shmobile/board-kota2.c
mm/vmalloc.c

Simple merge
index 5c7094e8f6e9e5f765e0ef2ac79c3711fc7fc923,8fc2c8fcbdc646a4a8babecbf4a758f88e6d8d60..095d6611c84e60443ae429e2c5e36b4074a02df7
@@@ -911,8 -902,14 +909,14 @@@ void __init setup_arch(char **cmdline_p
        machine_desc = mdesc;
        machine_name = mdesc->name;
  
 -      if (mdesc->soft_reboot)
 -              reboot_setup("s");
+ #ifdef CONFIG_ZONE_DMA
+       if (mdesc->dma_zone_size) {
+               extern unsigned long arm_dma_zone_size;
+               arm_dma_zone_size = mdesc->dma_zone_size;
+       }
+ #endif
 +      if (mdesc->restart_mode)
 +              reboot_setup(&mdesc->restart_mode);
  
        init_mm.start_code = (unsigned long) _text;
        init_mm.end_code   = (unsigned long) _etext;
Simple merge
index 202c3c6ec9d8667759a22bd6079835be18220a3f,7119b87cbfa0caa2727334b7815a8cf388ff6077..f71fa3c13c8c1a4e3c77f6802014fca113b3a5a4
@@@ -607,8 -607,9 +607,9 @@@ struct sys_timer ag5evm_timer = 
  
  MACHINE_START(AG5EVM, "ag5evm")
        .map_io         = ag5evm_map_io,
+       .nr_irqs        = NR_IRQS_LEGACY,
        .init_irq       = sh73a0_init_irq,
 -      .handle_irq     = shmobile_handle_irq_gic,
 +      .handle_irq     = gic_handle_irq,
        .init_machine   = ag5evm_init,
        .timer          = &ag5evm_timer,
  MACHINE_END
index 1b4439d3f9d51e41b9c3c0824eb5990389cd1343,f44150b5ae46fc3a9f9c7ef57d04a30b2031dde3..857ceeec1bb0e9975eb589deb82fbde7a9be856a
@@@ -447,8 -549,9 +549,9 @@@ struct sys_timer kota2_timer = 
  
  MACHINE_START(KOTA2, "kota2")
        .map_io         = kota2_map_io,
-       .init_irq       = kota2_init_irq,
+       .nr_irqs        = NR_IRQS_LEGACY,
+       .init_irq       = sh73a0_init_irq,
 -      .handle_irq     = shmobile_handle_irq_gic,
 +      .handle_irq     = gic_handle_irq,
        .init_machine   = kota2_init,
        .timer          = &kota2_timer,
  MACHINE_END
diff --cc mm/vmalloc.c
Simple merge