Re: [PATCH 1/2] ARM: dts: iwg20d-q7: Add RTC support

2017-08-13 Thread Simon Horman
On Wed, Aug 09, 2017 at 11:02:30AM +0200, Simon Horman wrote: > On Tue, Aug 08, 2017 at 02:04:24PM +0100, Biju Das wrote: > > Define the iWave RainboW-G20D-Qseven board dependent part of the > > RTC device node. > > > > Signed-off-by: Biju Das > > --- > >

Re: [PATCH 2/2] ARM: dts: r8a7743: Add I2C DT support

2017-08-13 Thread Simon Horman
On Wed, Aug 09, 2017 at 09:23:05AM +, Biju Das wrote: > > > > -Original Message- > > From: Simon Horman [mailto:ho...@verge.net.au] > > Sent: 09 August 2017 09:53 > > To: Biju Das > > Cc: Rob Herring ; Mark Rutland > >

Re: [RFT] arm64: dts: renesas: salvator-common: enable SDR104 for SD cards

2017-08-13 Thread Simon Horman
On Tue, Aug 08, 2017 at 08:54:45PM +0200, Wolfram Sang wrote: > > > As it is an "RFT" I'm happy to apply it if you repost > > it or otherwise indicate that is what you would like to happen. > > As discussed in a chat, I tried SDR104 with my SDIO WiFi cards: > > H3: > - one slot worked

[PATCH repost] serial: sh-sci: use of_property_read_bool()

2017-08-13 Thread Sergei Shtylyov
Use more compact of_property_read_bool() call for a boolean property instead of of_find_property() call in sci_parse_dt(). Signed-off-by: Sergei Shtylyov --- This patch is against the 'tty-next' branch of GregKH's 'tty.git' repo. Reposting as the previous

[PATCH] serial: sh-sci: use of_property_read_bool()

2017-08-13 Thread Sergei Shtylyov
Use more compact of_property_read_bool() call for a boolean property instead of of_find_property() call in sci_parse_dt(). Signed-off-by: Sergei Shtylyov --- This patch is against the 'tty-next' branch of GregKH's 'tty.git' repo.

[PATCH 3/4] net: sh_eth: constify platform_device_id

2017-08-13 Thread Arvind Yadav
platform_device_id are not supposed to change at runtime. All functions working with platform_device_id provided by work with const platform_device_id. So mark the non-const structs as const. Signed-off-by: Arvind Yadav --- drivers/net/ethernet/renesas/sh_eth.c | 2