Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 95237b80 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
* 'merge' of git://git.kernel.org/pub/scm/linux/kernel/git/benh/powerpc:
  powerpc: Fix failure to shutdown with CPU hotplug
  powerpc: Fix PCI in Holly device tree
parents cf4b0b2c 61e9916e
Loading
Loading
Loading
Loading
+53 −53
Original line number Original line Diff line number Diff line
@@ -133,14 +133,15 @@
			reg = <0x00007400 0x00000400>;
			reg = <0x00007400 0x00000400>;
			big-endian;
			big-endian;
		};
		};
	};


		pci@1000 {
	pci@c0001000 {
		device_type = "pci";
		device_type = "pci";
		compatible = "tsi109-pci", "tsi108-pci";
		compatible = "tsi109-pci", "tsi108-pci";
		#interrupt-cells = <1>;
		#interrupt-cells = <1>;
		#size-cells = <2>;
		#size-cells = <2>;
		#address-cells = <3>;
		#address-cells = <3>;
			reg = <0x00001000 0x00001000>;
		reg = <0xc0001000 0x00001000>;
		bus-range = <0x0 0x0>;
		bus-range = <0x0 0x0>;
		/*----------------------------------------------------+
		/*----------------------------------------------------+
		| PCI memory range.
		| PCI memory range.
@@ -189,7 +190,6 @@
			interrupt-parent = <&MPIC>;
			interrupt-parent = <&MPIC>;
		};
		};
	};
	};
	};


	chosen {
	chosen {
		linux,stdout-path = "/tsi109@c0000000/serial@7808";
		linux,stdout-path = "/tsi109@c0000000/serial@7808";
+1 −5
Original line number Original line Diff line number Diff line
@@ -34,11 +34,7 @@
#include <asm/smp.h>
#include <asm/smp.h>


#ifdef CONFIG_HOTPLUG_CPU
#ifdef CONFIG_HOTPLUG_CPU
/* this is used for software suspend, and that shuts down
#define cpu_should_die()	cpu_is_offline(smp_processor_id())
 * CPUs even while the system is still booting... */
#define cpu_should_die()	(cpu_is_offline(smp_processor_id()) && \
				   (system_state == SYSTEM_RUNNING     \
				 || system_state == SYSTEM_BOOTING))
#else
#else
#define cpu_should_die()	0
#define cpu_should_die()	0
#endif
#endif