Re: [PATCH 7/8] mtd: rawnand: jz4780-bch: Separate top-level and SoC specific code

2019-01-18 Thread Paul Cercueil
Hi, On Fri, Jan 18, 2019 at 5:35 AM, Boris Brezillon wrote: On Thu, 17 Jan 2019 22:06:33 -0300 Paul Cercueil mailto:p...@crapouillou.net>> wrote: The jz4780-nand driver uses an API provided by the jz4780-bch driver. This makes it difficult to support other SoCs in the jz4780-bch driver.

Re: [PATCH 7/8] mtd: rawnand: jz4780-bch: Separate top-level and SoC specific code

2019-01-18 Thread Boris Brezillon
On Thu, 17 Jan 2019 22:06:33 -0300 Paul Cercueil wrote: > The jz4780-nand driver uses an API provided by the jz4780-bch driver. > This makes it difficult to support other SoCs in the jz4780-bch driver. > To work around this, we separate the API functions from the SoC-specific > code, so that thes

[PATCH 7/8] mtd: rawnand: jz4780-bch: Separate top-level and SoC specific code

2019-01-17 Thread Paul Cercueil
The jz4780-nand driver uses an API provided by the jz4780-bch driver. This makes it difficult to support other SoCs in the jz4780-bch driver. To work around this, we separate the API functions from the SoC-specific code, so that these API functions are SoC-agnostic. Signed-off-by: Paul Cercueil -