From patchwork Tue Sep 1 13:28:40 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 512817 X-Patchwork-Delegate: trini@ti.com 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 396F114016A for ; Tue, 1 Sep 2015 23:30:00 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8FDEE4B7DB; Tue, 1 Sep 2015 15:29:49 +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 Jio1umgh_GoE; Tue, 1 Sep 2015 15:29:49 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 477644B70D; Tue, 1 Sep 2015 15:29:41 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 478594B6FA for ; Tue, 1 Sep 2015 15:29:33 +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 XIPSGr9JEDnX for ; Tue, 1 Sep 2015 15:29:33 +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 81E364B6B3 for ; Tue, 1 Sep 2015 15:29:28 +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 t81DSsFQ011568; Tue, 1 Sep 2015 22:29:03 +0900 X-Nifty-SrcIP: [111.107.185.228] From: Masahiro Yamada To: u-boot@lists.denx.de Date: Tue, 1 Sep 2015 22:28:40 +0900 Message-Id: <1441114138-31267-2-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 Subject: [U-Boot] [PATCH 01/19] powerpc: ppc4xx: remove alpr 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 Cc: Stefan Roese --- arch/powerpc/cpu/ppc4xx/Kconfig | 4 - board/prodrive/alpr/Kconfig | 12 -- board/prodrive/alpr/MAINTAINERS | 6 - board/prodrive/alpr/Makefile | 9 -- board/prodrive/alpr/alpr.c | 215 ------------------------ board/prodrive/alpr/config.mk | 16 -- board/prodrive/alpr/fpga.c | 239 --------------------------- board/prodrive/alpr/init.S | 53 ------ board/prodrive/alpr/nand.c | 124 -------------- configs/alpr_defconfig | 7 - doc/README.scrapyard | 3 +- include/configs/alpr.h | 351 ---------------------------------------- 12 files changed, 2 insertions(+), 1037 deletions(-) delete mode 100644 board/prodrive/alpr/Kconfig delete mode 100644 board/prodrive/alpr/MAINTAINERS delete mode 100644 board/prodrive/alpr/Makefile delete mode 100644 board/prodrive/alpr/alpr.c delete mode 100644 board/prodrive/alpr/config.mk delete mode 100644 board/prodrive/alpr/fpga.c delete mode 100644 board/prodrive/alpr/init.S delete mode 100644 board/prodrive/alpr/nand.c delete mode 100644 configs/alpr_defconfig delete mode 100644 include/configs/alpr.h diff --git a/include/configs/alpr.h b/include/configs/alpr.h deleted file mode 100644 index f113ebd..0000000 diff --git a/arch/powerpc/cpu/ppc4xx/Kconfig b/arch/powerpc/cpu/ppc4xx/Kconfig index 10b86e0..e8c0ca0 100644 --- a/arch/powerpc/cpu/ppc4xx/Kconfig +++ b/arch/powerpc/cpu/ppc4xx/Kconfig @@ -140,9 +140,6 @@ config TARGET_MIP405 config TARGET_PIP405 bool "Support PIP405" -config TARGET_ALPR - bool "Support alpr" - config TARGET_P3P440 bool "Support p3p440" @@ -197,7 +194,6 @@ source "board/mosaixtech/icon/Kconfig" source "board/mpl/mip405/Kconfig" source "board/mpl/pip405/Kconfig" source "board/pcs440ep/Kconfig" -source "board/prodrive/alpr/Kconfig" source "board/prodrive/p3p440/Kconfig" source "board/sbc405/Kconfig" source "board/t3corp/Kconfig" diff --git a/board/prodrive/alpr/Kconfig b/board/prodrive/alpr/Kconfig deleted file mode 100644 index 543b455..0000000 diff --git a/board/prodrive/alpr/MAINTAINERS b/board/prodrive/alpr/MAINTAINERS deleted file mode 100644 index 31baabb..0000000 diff --git a/board/prodrive/alpr/Makefile b/board/prodrive/alpr/Makefile deleted file mode 100644 index 812d041..0000000 diff --git a/board/prodrive/alpr/alpr.c b/board/prodrive/alpr/alpr.c deleted file mode 100644 index 31c1ab5..0000000 diff --git a/board/prodrive/alpr/config.mk b/board/prodrive/alpr/config.mk deleted file mode 100644 index 0ccb2e6..0000000 diff --git a/board/prodrive/alpr/fpga.c b/board/prodrive/alpr/fpga.c deleted file mode 100644 index 3133f94..0000000 diff --git a/board/prodrive/alpr/init.S b/board/prodrive/alpr/init.S deleted file mode 100644 index 7ff7a59..0000000 diff --git a/board/prodrive/alpr/nand.c b/board/prodrive/alpr/nand.c deleted file mode 100644 index ca40cea..0000000 diff --git a/configs/alpr_defconfig b/configs/alpr_defconfig deleted file mode 100644 index b7cd74d..0000000 diff --git a/doc/README.scrapyard b/doc/README.scrapyard index fb1ed42..cdb2b6e 100644 --- a/doc/README.scrapyard +++ b/doc/README.scrapyard @@ -12,7 +12,8 @@ The list should be sorted in reverse chronological order. Board Arch CPU Commit Removed Last known maintainer/contact ================================================================================================= -cam_enc_4xx arm arm926ejs - - Heiko Schocher +alpr powerpc ppc4xx - - Stefan Roese +cam_enc_4xx arm arm926ejs 8d775763 2015-08-20 Heiko Schocher atstk1003 avr32 - e5354b8a 2015-06-10 Haavard Skinnemoen atstk1004 avr32 - e5354b8a 2015-06-10 Haavard Skinnemoen atstk1006 avr32 - e5354b8a 2015-06-10 Haavard Skinnemoen