
On Mon, Jan 20, 2020 at 09:53:31AM +0000, Alex Nemirovsky wrote:
This series contains a set of basic DM drivers compatible with Cortina Access ARM and MIPS series of SoCs.
I'm not sure why my name appeared in the Cc list.
Please, remove it in the next versions if it's not related to me, otherwise, please be explicit why my participation is needed.
Jason Li (4): gpio: do not include <asm/arch/gpio.h> for Cortina CAxxxx SoCs gpio: cortina_gpio: add DM_GPIO driver for CAxxxx SoCs watchdog: cortina_wdt: add support for HW WDT on CAxxxx SoCs serial: serial_cortina: add UART DM driver for CAxxxx SoCs
MAINTAINERS | 8 +++ arch/arm/include/asm/gpio.h | 2 +- drivers/gpio/Kconfig | 8 +++ drivers/gpio/Makefile | 1 + drivers/gpio/cortina_gpio.c | 113 +++++++++++++++++++++++++++++++ drivers/serial/Kconfig | 7 ++ drivers/serial/Makefile | 2 +- drivers/serial/serial_cortina.c | 129 +++++++++++++++++++++++++++++++++++ drivers/serial/serial_cortina.h | 83 +++++++++++++++++++++++ drivers/watchdog/Kconfig | 8 +++ drivers/watchdog/Makefile | 1 + drivers/watchdog/cortina_wdt.c | 144 ++++++++++++++++++++++++++++++++++++++++ 12 files changed, 504 insertions(+), 2 deletions(-) create mode 100644 drivers/gpio/cortina_gpio.c create mode 100644 drivers/serial/serial_cortina.c create mode 100644 drivers/serial/serial_cortina.h create mode 100644 drivers/watchdog/cortina_wdt.c
-- 2.7.4