From patchwork Tue Sep 1 13:28:57 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 512825 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 8E878140216 for ; Tue, 1 Sep 2015 23:31:50 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BEA234B837; Tue, 1 Sep 2015 15:30:37 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QQ1bFaxnjyoT; Tue, 1 Sep 2015 15:30:37 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A1EF44B7F2; Tue, 1 Sep 2015 15:30:26 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 011394B778 for ; Tue, 1 Sep 2015 15:30:18 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id xY08_1ZyTFjw for ; Tue, 1 Sep 2015 15:30:17 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from conuserg012-v.nifty.com (conuserg012.nifty.com [202.248.44.38]) by theia.denx.de (Postfix) with ESMTPS id A1CA24B833 for ; Tue, 1 Sep 2015 15:30:01 +0200 (CEST) Received: from beagle.diag.org (KD111107185228.au-net.ne.jp [111.107.185.228]) (authenticated) by conuserg012-v.nifty.com with ESMTP id t81DSsFh011568; Tue, 1 Sep 2015 22:29:44 +0900 X-Nifty-SrcIP: [111.107.185.228] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Tue, 1 Sep 2015 22:28:57 +0900 Message-Id: <1441114138-31267-19-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1441114138-31267-1-git-send-email-yamada.masahiro@socionext.com> References: <1441114138-31267-1-git-send-email-yamada.masahiro@socionext.com> Cc: Marek Vasut , Tom Rini , Kim Phillips , Matthias Fuchs , Kumar Gala , Andy Fleming , Stefan Roese , York Sun Subject: [U-Boot] [PATCH 18/19] powerpc: mpc86xx: remove MPC8610HPCD support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This has not been converted to Generic Board, so should be removed. (See doc/README.generic-board for details.) Signed-off-by: Masahiro Yamada --- arch/powerpc/cpu/mpc86xx/Kconfig | 4 - board/freescale/mpc8610hpcd/Kconfig | 12 - board/freescale/mpc8610hpcd/MAINTAINERS | 6 - board/freescale/mpc8610hpcd/Makefile | 9 - board/freescale/mpc8610hpcd/README | 73 --- board/freescale/mpc8610hpcd/ddr.c | 59 --- board/freescale/mpc8610hpcd/law.c | 22 - board/freescale/mpc8610hpcd/mpc8610hpcd.c | 329 ------------- board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c | 71 --- configs/MPC8610HPCD_defconfig | 4 - doc/README.scrapyard | 1 + include/configs/MPC8610HPCD.h | 666 -------------------------- 12 files changed, 1 insertion(+), 1255 deletions(-) delete mode 100644 board/freescale/mpc8610hpcd/Kconfig delete mode 100644 board/freescale/mpc8610hpcd/MAINTAINERS delete mode 100644 board/freescale/mpc8610hpcd/Makefile delete mode 100644 board/freescale/mpc8610hpcd/README delete mode 100644 board/freescale/mpc8610hpcd/ddr.c delete mode 100644 board/freescale/mpc8610hpcd/law.c delete mode 100644 board/freescale/mpc8610hpcd/mpc8610hpcd.c delete mode 100644 board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c delete mode 100644 configs/MPC8610HPCD_defconfig delete mode 100644 include/configs/MPC8610HPCD.h diff --git a/include/configs/MPC8610HPCD.h b/include/configs/MPC8610HPCD.h deleted file mode 100644 index de56c48..0000000 diff --git a/arch/powerpc/cpu/mpc86xx/Kconfig b/arch/powerpc/cpu/mpc86xx/Kconfig index fe1859d..46d15e2 100644 --- a/arch/powerpc/cpu/mpc86xx/Kconfig +++ b/arch/powerpc/cpu/mpc86xx/Kconfig @@ -11,9 +11,6 @@ choice config TARGET_SBC8641D bool "Support sbc8641d" -config TARGET_MPC8610HPCD - bool "Support MPC8610HPCD" - config TARGET_MPC8641HPCN bool "Support MPC8641HPCN" @@ -22,7 +19,6 @@ config TARGET_XPEDITE517X endchoice -source "board/freescale/mpc8610hpcd/Kconfig" source "board/freescale/mpc8641hpcn/Kconfig" source "board/sbc8641d/Kconfig" source "board/xes/xpedite517x/Kconfig" diff --git a/board/freescale/mpc8610hpcd/Kconfig b/board/freescale/mpc8610hpcd/Kconfig deleted file mode 100644 index 8f713be..0000000 diff --git a/board/freescale/mpc8610hpcd/MAINTAINERS b/board/freescale/mpc8610hpcd/MAINTAINERS deleted file mode 100644 index de6ab89..0000000 diff --git a/board/freescale/mpc8610hpcd/Makefile b/board/freescale/mpc8610hpcd/Makefile deleted file mode 100644 index 2613004..0000000 diff --git a/board/freescale/mpc8610hpcd/README b/board/freescale/mpc8610hpcd/README deleted file mode 100644 index 31a9af3..0000000 diff --git a/board/freescale/mpc8610hpcd/ddr.c b/board/freescale/mpc8610hpcd/ddr.c deleted file mode 100644 index aa30cab..0000000 diff --git a/board/freescale/mpc8610hpcd/law.c b/board/freescale/mpc8610hpcd/law.c deleted file mode 100644 index 20b8fed..0000000 diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd.c b/board/freescale/mpc8610hpcd/mpc8610hpcd.c deleted file mode 100644 index 95e398c..0000000 diff --git a/board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c b/board/freescale/mpc8610hpcd/mpc8610hpcd_diu.c deleted file mode 100644 index 8f4183b..0000000 diff --git a/configs/MPC8610HPCD_defconfig b/configs/MPC8610HPCD_defconfig deleted file mode 100644 index f0e1370..0000000 diff --git a/doc/README.scrapyard b/doc/README.scrapyard index b3b001b..2a3ba4c 100644 --- a/doc/README.scrapyard +++ b/doc/README.scrapyard @@ -12,6 +12,7 @@ The list should be sorted in reverse chronological order. Board Arch CPU Commit Removed Last known maintainer/contact ================================================================================================= +MPC8610HPCD powerpc mpc86xx - - MPC8569MDS powerpc mpc85xx - - MPC8568MDS powerpc mpc85xx - - MPC8560ADS powerpc mpc85xx - - Kumar Gala