Re: [U-Boot] [PATCH v3 0/3] dm: gpio: Add driver for MPC85xx GPIO controller

2016-05-15 Thread Mario Six
On Fri, May 13, 2016 at 1:50 PM, Joakim Tjernlund wrote: > On Fri, 2016-05-13 at 13:15 +0200, Mario Six wrote: >> The functions for accessing GPIOs on MPC85xx are hardcoded in >> arch/powerpc/include/asm/mpc85xx_gpio.h This leads to problems if another >> GPIO >>

Re: [U-Boot] [PATCH v3 0/3] dm: gpio: Add driver for MPC85xx GPIO controller

2016-05-13 Thread Joakim Tjernlund
On Fri, 2016-05-13 at 13:15 +0200, Mario Six wrote: > The functions for accessing GPIOs on MPC85xx are hardcoded in > arch/powerpc/include/asm/mpc85xx_gpio.h This leads to problems if another GPIO > controller supporting the driver model is to be used simultaneously. > > Therefore, this patch

[U-Boot] [PATCH v3 0/3] dm: gpio: Add driver for MPC85xx GPIO controller

2016-05-13 Thread Mario Six
The functions for accessing GPIOs on MPC85xx are hardcoded in arch/powerpc/include/asm/mpc85xx_gpio.h This leads to problems if another GPIO controller supporting the driver model is to be used simultaneously. Therefore, this patch moves the "static" functions into a DM-compatible driver, and