Re: Nonterministic hang during bootconsole/console handover on ath79

2016-03-25 Thread Gabor Juhos
2016.03.24. 4:17 keltezéssel, Peter Hurley írta: > On 03/23/2016 07:09 PM, Matthias Schiffer wrote: autoconfig_16550a() is doing all kinds of weird checks to detect different hardware by writing a lot of register values which are documented as reserved in the AR7242 datasheet (there'

[PATCH] usb: phy: don't return with NULL from devm_usb_get_phy()

2013-10-11 Thread Gabor Juhos
The callers are expecting an ERR_PTR value in case of an error. Change he code to return with an encoded -ENOMEM value in the case of a failed devres_alloc call. Signed-off-by: Gabor Juhos --- drivers/usb/phy/phy.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers

Re: [PATCH] avr32: fix compiler warning

2013-09-26 Thread Gabor Juhos
2013.09.26. 8:18 keltezéssel, Hans-Christian Egtvedt írta: > Around Wed 25 Sep 2013 21:50:01 +0200 or thereabout, Gabor Juhos wrote: > > Tuning subject to > > avr32: cast syscall_return to silence compiler warning This is indeed better, thanks. > >> The patch fixe

[PATCH] avr32: fix compiler warning

2013-09-25 Thread Gabor Juhos
The patch fixes the following compiler warning: CC arch/avr32/kernel/process.o arch/avr32/kernel/process.c: In function 'copy_thread': arch/avr32/kernel/process.c:292: warning: assignment makes integer \ from pointer without a cast Signed-off-by: Gabor Juhos --- Note: th

[PATCH] avr32: balance cpu_idle_poll_ctrl calls

2013-09-25 Thread Gabor Juhos
he code to only disable idle poll if it is enabled by the same function to avoid the warning. Cc: sta...@vger.kernel.org Signed-off-by: Gabor Juhos --- Note: the patch is against v3.12-rc2. --- arch/avr32/kernel/time.c |9 - 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/arc

Re: [PATCH 6/6] MIPS: ath79: simplify platform_get_resource_byname/devm_ioremap_resource

2013-08-22 Thread Gabor Juhos
oremap_resource(e1, res); > // > > Signed-off-by: Julia Lawall Acked-by: Gabor Juhos Thanks! -Gabor -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

[PATCH] tty: ar933x_uart: convert to use devm_* functions

2013-08-10 Thread Gabor Juhos
Use devm_* functions in order to simplify cleanup paths. Signed-off-by: Gabor Juhos --- drivers/tty/serial/ar933x_uart.c | 26 -- 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/drivers/tty/serial/ar933x_uart.c b/drivers/tty/serial/ar933x_uart.c index

Re: [PATCH 2/2] MIPS: implement pcibios_get_phb_of_node

2013-04-11 Thread Gabor Juhos
2013.04.11. 19:35 keltezéssel, Bjorn Helgaas írta: > Thanks for checking these out! I put them in my "next" branch and > pushed it, so they should appear in v3.10. Great. Thank you! -Gabor -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to maj

Re: [PATCH 2/2] MIPS: implement pcibios_get_phb_of_node

2013-04-11 Thread Gabor Juhos
2013.04.10. 18:31 keltezéssel, Bjorn Helgaas írta: > On Thu, Apr 4, 2013 at 12:01 PM, Gabor Juhos wrote: >> The of_node field of the device assigned to a >> PCI bus is used during scanning of the PCI bus. >> However on MIPS, the of_node field is assigned >> only aft

[PATCH 1/2] pci/of: remove weak annotation of pcibios_get_phb_of_node

2013-04-04 Thread Gabor Juhos
instead of adding a new forward declaration for that. Signed-off-by: Gabor Juhos --- Notes: Unfortunately I'm not a binutils/gcc expert, so I don't know if this is the expected behaviour of those or not. Removing the __weak annotation from the forward declaration of 'pcibios_get_phb_o

[PATCH 2/2] MIPS: implement pcibios_get_phb_of_node

2013-04-04 Thread Gabor Juhos
core will initialize the of_node field before starting the scan. Also remove the local assignment of bus->dev.of_node, it is not needed after the patch. Signed-off-by: Gabor Juhos --- arch/mips/pci/pci.c |8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/arch/mip

Re: [PATCH] pci: use newly introduced devm_ioremap_resource()

2013-03-11 Thread Gabor Juhos
error messages can be removed from the failure code paths. > > Signed-off-by: Silviu-Mihai Popescu Acked-by: Gabor Juhos -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at h

Re: [PATCH] pci: convert to devm_ioremap_resource()

2013-03-11 Thread Gabor Juhos
error messages can be removed from the failure code paths. > > Signed-off-by: Silviu-Mihai Popescu > --- > arch/mips/pci/pci-ar724x.c | 18 +- > 1 file changed, 9 insertions(+), 9 deletions(-) Acked-by: Gabor Juhos Just a minor note, arch/mips/pci/pci-ar