Merge master.kernel.org:/home/rmk/linux-2.6-arm

+11 -2
+1 -1
arch/arm/kernel/semaphore.c
··· 178 178 * registers (r0 to r3 and lr), but not ip, as we use it as a return 179 179 * value in some cases.. 180 180 */ 181 - asm(" .section .sched.text,\"ax\" \n\ 181 + asm(" .section .sched.text,\"ax\",%progbits \n\ 182 182 .align 5 \n\ 183 183 .globl __down_failed \n\ 184 184 __down_failed: \n\
+6
arch/arm/mach-ixp4xx/ixdp425-setup.c
··· 123 123 platform_add_devices(ixdp425_devices, ARRAY_SIZE(ixdp425_devices)); 124 124 } 125 125 126 + #ifdef CONFIG_ARCH_IXDP465 126 127 MACHINE_START(IXDP425, "Intel IXDP425 Development Platform") 127 128 /* Maintainer: MontaVista Software, Inc. */ 128 129 .phys_ram = PHYS_OFFSET, ··· 135 134 .boot_params = 0x0100, 136 135 .init_machine = ixdp425_init, 137 136 MACHINE_END 137 + #endif 138 138 139 + #ifdef CONFIG_MACH_IXDP465 139 140 MACHINE_START(IXDP465, "Intel IXDP465 Development Platform") 140 141 /* Maintainer: MontaVista Software, Inc. */ 141 142 .phys_ram = PHYS_OFFSET, ··· 149 146 .boot_params = 0x0100, 150 147 .init_machine = ixdp425_init, 151 148 MACHINE_END 149 + #endif 152 150 151 + #ifdef CONFIG_ARCH_PRPMC1100 153 152 MACHINE_START(IXCDP1100, "Intel IXCDP1100 Development Platform") 154 153 /* Maintainer: MontaVista Software, Inc. */ 155 154 .phys_ram = PHYS_OFFSET, ··· 163 158 .boot_params = 0x0100, 164 159 .init_machine = ixdp425_init, 165 160 MACHINE_END 161 + #endif 166 162 167 163 /* 168 164 * Avila is functionally equivalent to IXDP425 except that it adds
+3
arch/arm/mach-sa1100/generic.h
··· 39 39 40 40 struct irda_platform_data; 41 41 void sa11x0_set_irda_data(struct irda_platform_data *irda); 42 + 43 + struct mcp_plat_data; 44 + void sa11x0_set_mcp_data(struct mcp_plat_data *data);
+1 -1
include/asm-arm/futex.h
··· 14 14 int cmp = (encoded_op >> 24) & 15; 15 15 int oparg = (encoded_op << 8) >> 20; 16 16 int cmparg = (encoded_op << 20) >> 20; 17 - int oldval = 0, ret, tem; 17 + int oldval = 0, ret; 18 18 if (encoded_op & (FUTEX_OP_OPARG_SHIFT << 28)) 19 19 oparg = 1 << oparg; 20 20