Commit 13e65280 authored by David Woodhouse's avatar David Woodhouse
Browse files

Merge with master.kernel.org:/pub/scm/linux/kernel/git/torvalds/linux-2.6.git

Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
VERSION = 2
PATCHLEVEL = 6
SUBLEVEL = 12
EXTRAVERSION =-rc3
EXTRAVERSION =-rc4
NAME=Woozy Numbat

# *DOCUMENTATION*
+1 −1
Original line number Diff line number Diff line
@@ -650,7 +650,7 @@ acpi_find_rsdp (void)
	 */
	rsdp_phys = acpi_scan_rsdp (0, 0x400);
	if (!rsdp_phys)
		rsdp_phys = acpi_scan_rsdp (0xE0000, 0xFFFFF);
		rsdp_phys = acpi_scan_rsdp (0xE0000, 0x20000);

	return rsdp_phys;
}
+2 −0
Original line number Diff line number Diff line
@@ -77,9 +77,11 @@ config 44x
	bool "44x"

config POWER3
	select PPC_FPU
	bool "POWER3"

config POWER4
	select PPC_FPU
	bool "POWER4 and 970 (G5)"

config 8xx
+1 −0
Original line number Diff line number Diff line
@@ -262,6 +262,7 @@ config PPC_RTAS
config RTAS_PROC
	bool "Proc interface to RTAS"
	depends on PPC_RTAS
	default y

config RTAS_FLASH
	tristate "Firmware flash interface"
+0 −7
Original line number Diff line number Diff line
@@ -326,13 +326,6 @@ static void __devinit smp_xics_setup_cpu(int cpu)

	cpu_clear(cpu, of_spin_map);

	/*
	 * Put the calling processor into the GIQ.  This is really only
	 * necessary from a secondary thread as the OF start-cpu interface
	 * performs this function for us on primary threads.
	 */
	rtas_set_indicator(GLOBAL_INTERRUPT_QUEUE,
		(1UL << interrupt_server_size) - 1 - default_distrib_server, 1);
}

static DEFINE_SPINLOCK(timebase_lock);
Loading