Re: [PATCH -next 11/13] hwrng: st - use devm_platform_ioremap_resource() to simplify code

2019-10-16 Thread Patrice CHOTARD
m_device *pdev) > if (!ddata) > return -ENOMEM; > > - res = platform_get_resource(pdev, IORESOURCE_MEM, 0); > - base = devm_ioremap_resource(&pdev->dev, res); > + base = devm_platform_ioremap_resource(pdev, 0); > if (IS_ERR(base)) > return PTR_ERR(base); > Reviewed-by: Patrice Chotard Thanks

Re: [PATCH v2 29/34] dt-bindings: arm: Convert ST STi board/soc bindings to json-schema

2018-12-04 Thread Patrice CHOTARD
Hi Rob On 12/3/18 10:32 PM, Rob Herring wrote: > Convert ST STi SoC bindings to DT schema format using json-schema. > > Cc: Patrice Chotard > Cc: Mark Rutland > Cc: devicet...@vger.kernel.org > Signed-off-by: Rob Herring > --- > Documentation/devicetree/b

Re: [PATCH 32/36] dt-bindings: arm: Convert ST STi board/soc bindings to json-schema

2018-10-10 Thread Patrice CHOTARD
Hi Rob On 10/05/2018 06:58 PM, Rob Herring wrote: > Convert ST STi SoC bindings to DT schema format using json-schema. > > Cc: Patrice Chotard > Cc: Mark Rutland > Cc: devicet...@vger.kernel.org > Signed-off-by: Rob Herring > --- > Documentation/devicetree/b

Re: [PATCH v3] watchdog: add SPDX identifiers for watchdog subsystem

2018-02-21 Thread Patrice CHOTARD
Software Foundation; either version > - * 2 of the Licence, or (at your option) any later version. >*/ > For st_lpc_wdt.c Acked-by: Patrice Chotard Thanks

Re: [PATCH] watchdog: add SPDX identifiers for watchdog subsystem

2018-02-21 Thread Patrice CHOTARD
t and/or > - * modify it under the terms of the GNU General Public Licence > - * as published by the Free Software Foundation; either version > - * 2 of the Licence, or (at your option) any later version. >*/ > For st_lpc_wdt.c Acked-by: Patrice Chotard Thanks

Re: [PATCH] cpufreq: Convert to using %pOF instead of full_name

2017-07-19 Thread Patrice CHOTARD
Wysocki" > Cc: Viresh Kumar > Cc: Benjamin Herrenschmidt > Cc: Paul Mackerras > Cc: Michael Ellerman > Cc: Patrice Chotard > Cc: linux...@vger.kernel.org > Cc: linuxppc-dev@lists.ozlabs.org > Cc: linux-arm-ker...@lists.infradead.org > Cc: ker...@stl

Re: [STLinux Kernel] [PATCH v2 1/6] ARM: dts: STiH407: DT fix s/interrupts-names/interrupt-names/

2016-10-21 Thread Patrice Chotard
On 10/21/2016 12:11 PM, Peter Griffin wrote: > On Fri, 21 Oct 2016, Geert Uytterhoeven wrote: > >> Signed-off-by: Geert Uytterhoeven >> Acked-by: Rob Herring >> --- >> v2: >> - Add Acked-by. >> --- > > Acked-by: Peter Griffin > applied with Peter Acked-by Thanks Geert

Re: [STLinux Kernel] [PATCH] i2c: don't print error when adding adapter fails

2016-08-10 Thread Patrice Chotard
g, avoiding the patch bomb is probably a good thing. > > Should go via subsystem tree, I'd think. > > Wolfram Sang (1): > i2c: don't print error when adding adapter fails > > drivers/i2c/busses/i2c-st.c | 4 +--- > For i2c-st.c Acked-by: Patrice Chotard Thanks

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

2015-04-07 Thread Patrice Chotard
Hi On 04/05/2015 08:24 PM, Joe Perches wrote: These structs can be const, so make them const. Miscellanea: o Add static to struct uart_ops declaration in bfin_sport_uart Signed-off-by: Joe Perches --- [...] for drivers/tty/serial/st-asc.c | 2 +- Acked-by: Patrice

Re: [PATCH 05/35 linux-next] tty: constify of_device_id array

2015-03-17 Thread Patrice Chotard
Hi Fabian On 03/16/2015 08:17 PM, Fabian Frederick wrote: of_device_id is always used as const. (See driver.of_match_table and open firmware functions) Signed-off-by: Fabian Frederick --- drivers/tty/serial/st-asc.c | 2 +- For this driver Acked-by: Patrice Chotard