Hi Dave, Today's linux-next merge of the cpufreq tree got a conflict in arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c between commit 5cd7376200be7b8bab085557ff5876b04bd84191 ("fix: crash: IP: __bitmap_intersects+0x48/0x73") from the cpus4096 tree and commit 6fc619dc092a0a159cf5fb46afa52f2f8128b1d4 ("[CPUFREQ] checkpatch cleanups for acpi-cpufreq") from the cpufreq tree. Just changing context. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ diff --cc arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c index 0192767,cba5c6b..0000000 --- a/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c +++ b/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.c @@@ -138,15 -140,13 +140,13 @@@ struct io_addr u8 bit_width; }; - typedef union { - struct msr_addr msr; - struct io_addr io; - } drv_addr_union; - struct drv_cmd { unsigned int type; - cpumask_var_t mask; + const struct cpumask *mask; - drv_addr_union addr; + union { + struct msr_addr msr; + struct io_addr io; + } addr; u32 val; }; -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html