All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ajay Bhargav <ajay.bhargav@einfochips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 09/11] ARM: armada100: remove aspenite and gplugd board support
Date: Tue, 10 Feb 2015 05:06:45 +0000	[thread overview]
Message-ID: <1423544943735.99409@einfochips.com> (raw)
In-Reply-To: <1423543482-11423-10-git-send-email-yamada.m@jp.panasonic.com>


________________________________________
From: Masahiro Yamada <yamada.m@jp.panasonic.com>
Sent: Tuesday, February 10, 2015 10:14 AM
To: u-boot at lists.denx.de
Cc: Tom Rini; Albert Aribaud; Masahiro Yamada; Prafulla Wadaskar; Ajay Bhargav; Roman Byshko; Matthias Fuchs; Marek Vasut; Ivan Khoronzhuk; Jiandong Zheng; Oleksandr Tymoshenko; Jagannadha Sutradharudu Teki; Joe Hershberger; Sergey Kostanbaev; Steve Rae; WingMan Kwok; Siva Durga Prasad Paladugu; Stefan Roese; Michal Simek; Nobuhiro Iwamatsu; Simon Glass; Wolfgang Denk; Ian Campbell; Georges Savoundararadj; Daniel Schwierzeck
Subject: [PATCH 09/11] ARM: armada100: remove aspenite and gplugd board support

These are still non-generic boards.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Cc: Prafulla Wadaskar <prafulla@marvell.com>
Cc: Ajay Bhargav <ajay.bhargav@einfochips.com>
---

 arch/arm/Kconfig                                   |  10 -
 arch/arm/cpu/arm926ejs/Makefile                    |   1 -
 arch/arm/cpu/arm926ejs/armada100/Makefile          |   9 -
 arch/arm/cpu/arm926ejs/armada100/cpu.c             |  92 ---
 arch/arm/cpu/arm926ejs/armada100/dram.c            | 116 ----
 arch/arm/cpu/arm926ejs/armada100/timer.c           | 194 ------
 arch/arm/include/asm/arch-armada100/armada100.h    |  60 --
 arch/arm/include/asm/arch-armada100/config.h       |  42 --
 arch/arm/include/asm/arch-armada100/cpu.h          | 162 -----
 arch/arm/include/asm/arch-armada100/gpio.h         |  32 -
 arch/arm/include/asm/arch-armada100/mfp.h          |  80 ---
 arch/arm/include/asm/arch-armada100/spi.h          |  79 ---
 .../include/asm/arch-armada100/utmi-armada100.h    |  63 --
 board/Marvell/aspenite/Kconfig                     |  15 -
 board/Marvell/aspenite/MAINTAINERS                 |   6 -
 board/Marvell/aspenite/Makefile                    |  10 -
 board/Marvell/aspenite/aspenite.c                  |  43 --
 board/Marvell/gplugd/Kconfig                       |  15 -
 board/Marvell/gplugd/MAINTAINERS                   |   6 -
 board/Marvell/gplugd/Makefile                      |  15 -
 board/Marvell/gplugd/gplugd.c                      | 130 ----
 configs/aspenite_defconfig                         |   2 -
 configs/gplugd_defconfig                           |   2 -
 doc/README.scrapyard                               |   2 +
 drivers/net/Makefile                               |   1 -
 drivers/net/armada100_fec.c                        | 726 ---------------------
 drivers/net/armada100_fec.h                        | 209 ------
 drivers/spi/Makefile                               |   1 -
 drivers/spi/armada100_spi.c                        | 203 ------
 drivers/usb/host/Makefile                          |   1 -
 drivers/usb/host/ehci-armada100.c                  |  48 --
 drivers/usb/host/utmi-armada100.c                  |  80 ---
 include/configs/aspenite.h                         |  55 --
 include/configs/gplugd.h                           | 134 ----
 include/netdev.h                                   |   1 -
 35 files changed, 2 insertions(+), 2643 deletions(-)
 delete mode 100644 arch/arm/cpu/arm926ejs/armada100/Makefile
 delete mode 100644 arch/arm/cpu/arm926ejs/armada100/cpu.c
 delete mode 100644 arch/arm/cpu/arm926ejs/armada100/dram.c
 delete mode 100644 arch/arm/cpu/arm926ejs/armada100/timer.c
 delete mode 100644 arch/arm/include/asm/arch-armada100/armada100.h
 delete mode 100644 arch/arm/include/asm/arch-armada100/config.h
 delete mode 100644 arch/arm/include/asm/arch-armada100/cpu.h
 delete mode 100644 arch/arm/include/asm/arch-armada100/gpio.h
 delete mode 100644 arch/arm/include/asm/arch-armada100/mfp.h
 delete mode 100644 arch/arm/include/asm/arch-armada100/spi.h
 delete mode 100644 arch/arm/include/asm/arch-armada100/utmi-armada100.h
 delete mode 100644 board/Marvell/aspenite/Kconfig
 delete mode 100644 board/Marvell/aspenite/MAINTAINERS
 delete mode 100644 board/Marvell/aspenite/Makefile
 delete mode 100644 board/Marvell/aspenite/aspenite.c
 delete mode 100644 board/Marvell/gplugd/Kconfig
 delete mode 100644 board/Marvell/gplugd/MAINTAINERS
 delete mode 100644 board/Marvell/gplugd/Makefile
 delete mode 100644 board/Marvell/gplugd/gplugd.c
 delete mode 100644 configs/aspenite_defconfig
 delete mode 100644 configs/gplugd_defconfig
 delete mode 100644 drivers/net/armada100_fec.c
 delete mode 100644 drivers/net/armada100_fec.h
 delete mode 100644 drivers/spi/armada100_spi.c
 delete mode 100644 drivers/usb/host/ehci-armada100.c
 delete mode 100644 drivers/usb/host/utmi-armada100.c
 delete mode 100644 include/configs/aspenite.h
 delete mode 100644 include/configs/gplugd.h

Is it late to send patch for these boards? These boards are generic boards but SYS_GENERIC_BOARD config is not enabled for them. Sorry for being late but Can I send patches now to keep this alive?

Regards,
Ajay Bhargav
************************************************************************************************************************************************************* eInfochips Business Disclaimer: This e-mail message and all attachments transmitted with it are intended solely for the use of the addressee and may contain legally privileged and confidential information. If the reader of this message is not the intended recipient, or an employee or agent responsible for delivering this message to the intended recipient, you are hereby notified that any dissemination, distribution, copying, or other use of this message or its attachments is strictly prohibited. If you have received this message in error, please notify the sender immediately by replying to this message and please delete it from your computer. Any views expressed in this message are those of the individual sender unless otherwise stated. Company has taken enough precautions to prevent the spread of viruses. However the company accepts no liability for any damage caused by any virus transmitted by this email. *************************************************************************************************************************************************************

  reply	other threads:[~2015-02-10  5:06 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-02-10  4:44 [U-Boot] [PATCH 0/11] ARM: remove non-generic boards Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 01/11] ARM: remove mx31ads board support Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 02/11] ARM: mx31: remove imx31_phycore board Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 03/11] ARM: remove jadecpu board support Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 04/11] ARM: remove zmx25 " Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 05/11] ARM: remove devkit3250 " Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 06/11] ARM: remove dkb " Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 07/11] ARM: remove cm4008 and cm41xx " Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 08/11] ARM: remove a320evb " Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 09/11] ARM: armada100: remove aspenite and gplugd " Masahiro Yamada
2015-02-10  5:06   ` Ajay Bhargav [this message]
2015-02-10  5:11     ` Prafulla Wadaskar
2015-02-10  5:13     ` Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 10/11] ARM: remove tnetv107x " Masahiro Yamada
2015-02-10  4:44 ` [U-Boot] [PATCH 11/11] ARM: davinci: remove hawkboard support Masahiro Yamada

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=1423544943735.99409@einfochips.com \
    --to=ajay.bhargav@einfochips.com \
    --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.