All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/8] dm: Update on serial driver progress
Date: Thu, 20 Oct 2016 13:06:52 -0600	[thread overview]
Message-ID: <1476990421-30259-1-git-send-email-sjg@chromium.org> (raw)

Only three serial drivers remain to be converted. This series drops
two of those, since the boards appear to be unmaintained.

With this, only blackfin remains.

The blackfin driver probably needs to be converted as there is recent
activity with these boards. I am copying the maintainer so that this
work can be completed.


Simon Glass (8):
  arm: Remove colibri_pxa270 board
  arm: Remove h2200 board
  arm: Remove zipitz2 board
  arm: Drop pxa serial driver
  serial: Update docs to indicate mcfuart supports DM_SERIAL
  arm: Remove smdk2410 board
  arm: Remove VCMA9 board
  serial: Drop the s3c24x0 serial driver

 arch/arm/Kconfig                              |  25 --
 board/h2200/Kconfig                           |   9 -
 board/h2200/MAINTAINERS                       |   6 -
 board/h2200/Makefile                          |  14 -
 board/h2200/h2200-header.S                    |  15 -
 board/h2200/h2200.c                           |  73 ----
 board/mpl/common/common_util.c                |  23 --
 board/mpl/vcma9/Kconfig                       |  15 -
 board/mpl/vcma9/MAINTAINERS                   |   6 -
 board/mpl/vcma9/Makefile                      |  11 -
 board/mpl/vcma9/cmd_vcma9.c                   | 119 ------
 board/mpl/vcma9/lowlevel_init.S               | 500 --------------------------
 board/mpl/vcma9/vcma9.c                       | 209 -----------
 board/mpl/vcma9/vcma9.h                       |  28 --
 board/samsung/smdk2410/Kconfig                |  15 -
 board/samsung/smdk2410/MAINTAINERS            |   6 -
 board/samsung/smdk2410/Makefile               |   9 -
 board/samsung/smdk2410/lowlevel_init.S        | 146 --------
 board/samsung/smdk2410/smdk2410.c             | 139 -------
 board/toradex/colibri_pxa270/Kconfig          |  12 -
 board/toradex/colibri_pxa270/MAINTAINERS      |   6 -
 board/toradex/colibri_pxa270/Makefile         |   9 -
 board/toradex/colibri_pxa270/colibri_pxa270.c | 107 ------
 board/zipitz2/Kconfig                         |   9 -
 board/zipitz2/MAINTAINERS                     |   6 -
 board/zipitz2/Makefile                        |  10 -
 board/zipitz2/zipitz2.c                       | 217 -----------
 configs/VCMA9_defconfig                       |  16 -
 configs/colibri_pxa270_defconfig              |  19 -
 configs/h2200_defconfig                       |  25 --
 configs/smdk2410_defconfig                    |  16 -
 configs/zipitz2_defconfig                     |  19 -
 doc/driver-model/serial-howto.txt             |   3 -
 drivers/serial/Makefile                       |   2 -
 drivers/serial/serial_pxa.c                   | 299 ---------------
 drivers/serial/serial_s3c24x0.c               | 208 -----------
 include/configs/VCMA9.h                       | 207 -----------
 include/configs/colibri_pxa270.h              | 223 ------------
 include/configs/h2200.h                       | 155 --------
 include/configs/smdk2410.h                    | 181 ----------
 include/configs/zipitz2.h                     | 213 -----------
 scripts/config_whitelist.txt                  |   6 -
 42 files changed, 3336 deletions(-)
 delete mode 100644 board/h2200/Kconfig
 delete mode 100644 board/h2200/MAINTAINERS
 delete mode 100644 board/h2200/Makefile
 delete mode 100644 board/h2200/h2200-header.S
 delete mode 100644 board/h2200/h2200.c
 delete mode 100644 board/mpl/vcma9/Kconfig
 delete mode 100644 board/mpl/vcma9/MAINTAINERS
 delete mode 100644 board/mpl/vcma9/Makefile
 delete mode 100644 board/mpl/vcma9/cmd_vcma9.c
 delete mode 100644 board/mpl/vcma9/lowlevel_init.S
 delete mode 100644 board/mpl/vcma9/vcma9.c
 delete mode 100644 board/mpl/vcma9/vcma9.h
 delete mode 100644 board/samsung/smdk2410/Kconfig
 delete mode 100644 board/samsung/smdk2410/MAINTAINERS
 delete mode 100644 board/samsung/smdk2410/Makefile
 delete mode 100644 board/samsung/smdk2410/lowlevel_init.S
 delete mode 100644 board/samsung/smdk2410/smdk2410.c
 delete mode 100644 board/toradex/colibri_pxa270/Kconfig
 delete mode 100644 board/toradex/colibri_pxa270/MAINTAINERS
 delete mode 100644 board/toradex/colibri_pxa270/Makefile
 delete mode 100644 board/toradex/colibri_pxa270/colibri_pxa270.c
 delete mode 100644 board/zipitz2/Kconfig
 delete mode 100644 board/zipitz2/MAINTAINERS
 delete mode 100644 board/zipitz2/Makefile
 delete mode 100644 board/zipitz2/zipitz2.c
 delete mode 100644 configs/VCMA9_defconfig
 delete mode 100644 configs/colibri_pxa270_defconfig
 delete mode 100644 configs/h2200_defconfig
 delete mode 100644 configs/smdk2410_defconfig
 delete mode 100644 configs/zipitz2_defconfig
 delete mode 100644 drivers/serial/serial_pxa.c
 delete mode 100644 drivers/serial/serial_s3c24x0.c
 delete mode 100644 include/configs/VCMA9.h
 delete mode 100644 include/configs/colibri_pxa270.h
 delete mode 100644 include/configs/h2200.h
 delete mode 100644 include/configs/smdk2410.h
 delete mode 100644 include/configs/zipitz2.h

-- 
2.8.0.rc3.226.g39d4020

             reply	other threads:[~2016-10-20 19:06 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-10-20 19:06 Simon Glass [this message]
2016-10-20 19:06 ` [U-Boot] [PATCH 1/8] arm: Remove colibri_pxa270 board Simon Glass
2016-10-20 19:06 ` [U-Boot] [PATCH 2/8] arm: Remove h2200 board Simon Glass
2016-10-20 19:06 ` [U-Boot] [PATCH 3/8] arm: Remove zipitz2 board Simon Glass
2016-10-20 19:06 ` [U-Boot] [PATCH 4/8] arm: Drop pxa serial driver Simon Glass
2016-10-20 19:06 ` [U-Boot] [PATCH 5/8] serial: Update docs to indicate mcfuart supports DM_SERIAL Simon Glass
2016-10-20 19:06 ` [U-Boot] [PATCH 6/8] arm: Remove smdk2410 board Simon Glass
2016-10-20 19:06 ` [U-Boot] [PATCH 7/8] arm: Remove VCMA9 board Simon Glass
2016-10-20 19:07 ` [U-Boot] [PATCH 8/8] serial: Drop the s3c24x0 serial driver Simon Glass
2016-10-21  6:52 ` [U-Boot] [PATCH 0/8] dm: Update on serial driver progress Marcel Ziswiler
2016-10-21  8:10   ` Marek Vasut
2016-10-26 16:30     ` Simon Glass
2016-10-28 10:44       ` Marcel Ziswiler
2016-11-02  1:55         ` Simon Glass
2016-11-02 15:44           ` Marcel Ziswiler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1476990421-30259-1-git-send-email-sjg@chromium.org \
    --to=sjg@chromium.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.