From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 07/10] ARM: USB: Remove the IXP EHCI driver
Date: Tue, 28 Jan 2014 00:30:37 +0100 [thread overview]
Message-ID: <1390865440-7023-7-git-send-email-marex@denx.de> (raw)
In-Reply-To: <1390865440-7023-1-git-send-email-marex@denx.de>
The driver is no longer used, remove it.
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Michael Schwingen <michael@schwingen.org>
Cc: Tom Rini <trini@ti.com>
---
drivers/usb/host/Makefile | 1 -
drivers/usb/host/ehci-ixp4xx.c | 37 -------------------------------------
2 files changed, 38 deletions(-)
delete mode 100644 drivers/usb/host/ehci-ixp4xx.c
diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile
index 1417028..578b097 100644
--- a/drivers/usb/host/Makefile
+++ b/drivers/usb/host/Makefile
@@ -31,7 +31,6 @@ obj-$(CONFIG_USB_EHCI_MX5) += ehci-mx5.o
obj-$(CONFIG_USB_EHCI_MX6) += ehci-mx6.o
obj-$(CONFIG_USB_EHCI_OMAP) += ehci-omap.o
obj-$(CONFIG_USB_EHCI_PPC4XX) += ehci-ppc4xx.o
-obj-$(CONFIG_USB_EHCI_IXP4XX) += ehci-ixp.o
obj-$(CONFIG_USB_EHCI_MARVELL) += ehci-marvell.o
obj-$(CONFIG_USB_EHCI_PCI) += ehci-pci.o
obj-$(CONFIG_USB_EHCI_SPEAR) += ehci-spear.o
diff --git a/drivers/usb/host/ehci-ixp4xx.c b/drivers/usb/host/ehci-ixp4xx.c
deleted file mode 100644
index 646e815..0000000
--- a/drivers/usb/host/ehci-ixp4xx.c
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * (C) Copyright 2008, Michael Trimarchi <trimarchimichael@yahoo.it>
- *
- * Author: Michael Trimarchi <trimarchimichael@yahoo.it>
- * This code is based on ehci freescale driver
- *
- * SPDX-License-Identifier: GPL-2.0+
- */
-#include <common.h>
-#include <usb.h>
-
-#include "ehci.h"
-/*
- * Create the appropriate control structures to manage
- * a new EHCI host controller.
- */
-int ehci_hcd_init(int index, enum usb_init_type init,
- struct ehci_hccr **hccr, struct ehci_hcor **hcor)
-{
- *hccr = (struct ehci_hccr *)(0xcd000100);
- *hcor = (struct ehci_hcor *)((uint32_t) *hccr
- + HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
-
- printf("IXP4XX init hccr %x and hcor %x hc_length %d\n",
- (uint32_t)*hccr, (uint32_t)*hcor,
- (uint32_t)HC_LENGTH(ehci_readl(&(*hccr)->cr_capbase)));
- return 0;
-}
-
-/*
- * Destroy the appropriate control structures corresponding
- * the the EHCI host controller.
- */
-int ehci_hcd_stop(int index)
-{
- return 0;
-}
--
1.8.5.2
next prev parent reply other threads:[~2014-01-27 23:30 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-27 23:30 [U-Boot] [PATCH 01/10] ARM: IXP: Remove actux1 board Marek Vasut
2014-01-27 23:30 ` [U-Boot] [PATCH 02/10] ARM: IXP: Remove actux2 board Marek Vasut
2014-01-28 5:54 ` [U-Boot] [PATCH 2/10 V2] " Marek Vasut
2014-01-27 23:30 ` [U-Boot] [PATCH 03/10] ARM: IXP: Remove actux3 board Marek Vasut
2014-01-28 5:55 ` [U-Boot] [PATCH 3/10 V2] " Marek Vasut
2014-01-27 23:30 ` [U-Boot] [PATCH 04/10] ARM: IXP: Remove actux4 board Marek Vasut
2014-01-28 5:55 ` [U-Boot] [PATCH 4/10 V2] " Marek Vasut
2014-01-27 23:30 ` [U-Boot] [PATCH 05/10] ARM: IXP: Remove dvl_host board Marek Vasut
2014-01-28 5:55 ` [U-Boot] [PATCH 5/10 V2] " Marek Vasut
2014-01-27 23:30 ` [U-Boot] [PATCH 06/10] ARM: IXP: Remove the IXP architecture support Marek Vasut
2014-01-27 23:30 ` Marek Vasut [this message]
2014-01-27 23:30 ` [U-Boot] [PATCH 08/10] ARM: PCI: Remove the IXP PCI driver Marek Vasut
2014-01-27 23:30 ` [U-Boot] [PATCH 09/10] ARM: NET: Remove the IXP NPE ethernet driver Marek Vasut
2014-01-27 23:30 ` [U-Boot] [PATCH 10/10] ARM: serial: Remove the IXP UART driver Marek Vasut
2014-01-28 5:27 ` Wolfgang Denk
2014-01-28 5:24 ` [U-Boot] [PATCH 01/10] ARM: IXP: Remove actux1 board Wolfgang Denk
2014-01-28 5:53 ` [U-Boot] [PATCH 1/10 V2] " Marek Vasut
2014-02-13 13:44 ` Albert ARIBAUD
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=1390865440-7023-7-git-send-email-marex@denx.de \
--to=marex@denx.de \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox