[PATCH] ARC fix for 4.13-final

2017-08-28 Thread Vineet Gupta
Hi Linus, Could you please add this ARC fixlet - which is a regression from pull req of last week - but only shows up in our out of tree platform (slated for next window). Thx, -Vineet Alexey Brodkin (1): ARCv2: SMP: Mask only private-per-core IRQ lines on boot at core intc arch/arc/kernel/i

[PATCH] ARCv2: SMP: Mask only private-per-core IRQ lines on boot at core intc

2017-08-28 Thread Vineet Gupta
From: Alexey Brodkin Recent commit a8ec3ee861b6 "arc: Mask individual IRQ lines during core INTC init" breaks interrupt handling on ARCv2 SMP systems. That commit masked all interrupts at onset, as some controllers on some boards (customer as well as internal), would assert interrutps early bef

[PATCH v2 0/2] console: don't select first registered console if stdout-path used

2017-08-28 Thread Eugeniy Paltsev
Don't select first registered console if one is specified by the device tree via the stdout-path (or linux,stdout-path) chosen node properties. Eugeniy Paltsev (2): OF: move extern declarations of of_stdout inside ifdef console: don't select first registered console if stdout-path used Chan

[PATCH v2 1/2] OF: move extern declarations of of_stdout inside ifdef

2017-08-28 Thread Eugeniy Paltsev
Move extern declarations of "of_stdout" pointer inside "CONFIG_OF" ifdef to be able to get rid of "CONFIG_OF" ifdef in its usage places. Acked-by: Rob Herring Suggested-by: Steven Rostedt Signed-off-by: Eugeniy Paltsev --- include/linux/of.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletio

[PATCH v2 2/2] console: don't select first registered console if stdout-path used

2017-08-28 Thread Eugeniy Paltsev
In the current implementation we take the first console that registers if we didn't select one. But if we specify console via "stdout-path" property in device tree we don't want first console that registers here to be selected. Otherwise we may choose wrong console - for example if some console is

Re: [PATCH] console: don't select first registered console if stdout-path used

2017-08-28 Thread Eugeniy Paltsev
On Sat, 2017-08-26 at 02:44 +0900, Sergey Senozhatsky wrote: > On (08/25/17 16:14), Eugeniy Paltsev wrote: > > In the current implementation we take the first console that > > registers if we didn't select one. > > > > But if we specify console via "stdout-path" property in device tree > > we don'