Re: [PATCH V2] tty: serial: Add const to struct uart_ops declarations

2015-04-07 Thread Tobias Klauser
On 2015-04-05 at 20:24:54 +0200, Joe Perches wrote: [...] > drivers/tty/serial/altera_jtaguart.c| 2 +- > drivers/tty/serial/altera_uart.c| 2 +- For these two drivers: Acked-by: Tobias Klauser ___ Linuxppc-dev mailin

Re: [PATCH v2 2/2] ASoC: fsl_asrc: Add ASRC ASoC CPU DAI and platform drivers

2014-07-24 Thread Tobias Klauser
On 2014-07-24 at 10:35:29 +0200, Nicolin Chen wrote: > The Asynchronous Sample Rate Converter (ASRC) converts the sampling rate of a > signal associated with an input clock into a signal associated with a > different > output clock. The driver currently works as a Front End of DPCM with other >

Re: [PATCH 54/62] TTY: irq: Remove IRQF_DISABLED

2011-09-09 Thread Tobias Klauser
On 2011-09-07 at 10:10:51 +0200, Yong Zhang wrote: > This flag is a NOOP and can be removed now. > > Signed-off-by: Yong Zhang For altera_jtaguart and altera_uart: Acked-by: Tobias Klauser ___ Linuxppc-dev mailing list Linuxppc-dev@lists.o

Re: [PATCH 161/493] tty: remove use of __devinit

2012-11-20 Thread Tobias Klauser
On 2012-11-19 at 19:21:50 +0100, Bill Pemberton wrote: > CONFIG_HOTPLUG is going away as an option so __devinit is no longer > needed. > > Signed-off-by: Bill Pemberton > Cc: Jiri Slaby > Cc: Alan Cox > Cc: Tobias Klauser > Cc: Lucas Tavares > Cc: &quo

Re: [PATCH 429/493] tty: remove use of __devexit

2012-11-20 Thread Tobias Klauser
On 2012-11-19 at 19:26:18 +0100, Bill Pemberton wrote: > CONFIG_HOTPLUG is going away as an option so __devexit is no > longer needed. > > Signed-off-by: Bill Pemberton > Cc: Jiri Slaby > Cc: Alan Cox > Cc: Tobias Klauser > Cc: Lucas Tavares > Cc: David

[PATCH net-next-2.6] netdev: ucc_geth: Use is_multicast_ether_addr helper

2011-01-12 Thread Tobias Klauser
Signed-off-by: Tobias Klauser --- drivers/net/ucc_geth.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/ucc_geth.c b/drivers/net/ucc_geth.c index 73a3e0d..715e7b4 100644 --- a/drivers/net/ucc_geth.c +++ b/drivers/net/ucc_geth.c @@ -2032,7 +2032,7 @@ static

[PATCH] powerpc: Declare hcall_inst_seq_ops const

2009-09-07 Thread Tobias Klauser
Marking it const moves it to the .rodata section, which avoids false sharing with potential dirty data. In addition it'll catch accidental writes at compile time to these shared resources. (description taken from commit 5dfe4c964a0dd7bb3a1d64a4166835a153146207) Signed-off-by: Tobias Kl

[PATCH net-next] net: ucc_geth: Omit check for multicast bit in netdev_for_each_mc_addr

2011-06-29 Thread Tobias Klauser
There is no need to check for the address being a multicast address in the netdev_for_each_mc_addr loop, so remove it. Signed-off-by: Tobias Klauser --- drivers/net/ucc_geth.c |5 - 1 files changed, 0 insertions(+), 5 deletions(-) diff --git a/drivers/net/ucc_geth.c b/drivers/net

[PATCH] Documentation/features: refresh powerpc arch support files

2020-08-10 Thread Tobias Klauser
Support for these was added by commit aa65ff6b18e0 ("powerpc/64s: Implement queued spinlocks and rwlocks"). Signed-off-by: Tobias Klauser --- Documentation/features/locking/queued-rwlocks/arch-support.txt | 2 +- .../features/locking/queued-spinlocks/arch-support.txt | 2 +

Re: [PATCH] Documentation/features: refresh powerpc arch support files

2020-08-10 Thread Tobias Klauser
On 2020-08-10 at 17:09:51 +0200, Christophe Leroy wrote: > > > Le 10/08/2020 à 12:09, Tobias Klauser a écrit : > > Support for these was added by commit aa65ff6b18e0 ("powerpc/64s: > > Implement queued spinlocks and rwlocks"). > > > > Signed-off-by:

[PATCH net-next] net: ibmveth: Remove unused stats member from struct ibmveth_adapter

2017-03-27 Thread Tobias Klauser
The ibmveth driver keeps its statistics in net_device->stats, so the stats member in struct ibmveth_adapter is unused. Remove it. Signed-off-by: Tobias Klauser --- drivers/net/ethernet/ibm/ibmveth.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/ethernet/ibm/ibmveth.h b/driv

[PATCH net-next] net: ibmvnic: Remove unused net_stats member from struct ibmvnic_adapter

2017-03-27 Thread Tobias Klauser
The ibmvnic driver keeps its statistics in net_device->stats, so the net_stats member in struct ibmvnic_adapter is unused. Remove it. Signed-off-by: Tobias Klauser --- drivers/net/ethernet/ibm/ibmvnic.h | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/ethernet/ibm/ibmvnic.h

Re: [PATCH v3 3/8] nios2: put setup.h in uapi

2017-01-13 Thread Tobias Klauser
On 2017-01-13 at 11:46:41 +0100, Nicolas Dichtel wrote: > This header file is exported, but from a userland pov, it's just a wrapper > to asm-generic/setup.h. > > Signed-off-by: Nicolas Dichtel Reviewed-by: Tobias Klauser

[PATCH] net: fs_enet: Use net_device_stats from struct net_device

2016-10-19 Thread Tobias Klauser
Instead of using a private copy of struct net_device_stats in struct fs_enet_private, use stats from struct net_device. Also remove the now unnecessary .ndo_get_stats function. Signed-off-by: Tobias Klauser --- .../net/ethernet/freescale/fs_enet/fs_enet-main.c | 43

[PATCH] powerpc/mce: Remove unused but set variable

2016-11-17 Thread Tobias Klauser
Remove the unused but set variable srr1 in save_mce_event() to fix the following GCC warning when building with 'W=1': arch/powerpc/kernel/mce.c:75:11: warning: variable 'srr1' set but not used [-Wunused-but-set-variable] Signed-off-by: Tobias Klauser --- arch/powe

[PATCH] powerpc: Fix old style declaration GCC warnings

2016-11-17 Thread Tobias Klauser
Fix two [-Wold-style-declaration] GCC warnings by moving the inline keyword before the return type. Signed-off-by: Tobias Klauser --- arch/powerpc/kernel/prom_init.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel

Re: [PATCH v1 2/2] serial: Set probe_no_timeout for all DT based drivers

2022-06-28 Thread Tobias Klauser
l Cooper , linux-te...@vger.kernel.org, Jiri Slaby , linux-asp...@lists.ozlabs.org, Rob Herring , Florian Fainelli , Mateusz Holenko , Alexander Shiyan , kevin hilman , Broadcom internal kernel review list , Joel Stanley , Orson Zhai , paolo abeni , Patrice Chotard , Ray Jui , Vladimir Zapol