From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?Beno=C3=AEt_Th=C3=A9baudeau?= Date: Mon, 5 Nov 2012 21:13:49 +0100 (CET) Subject: [U-Boot] [PATCH 13/13] ehci-mx5: Make board_ehci_hcd_init() optional In-Reply-To: <412111025.587245.1352146184216.JavaMail.root@advansee.com> Message-ID: <251603743.587419.1352146429292.JavaMail.root@advansee.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de A custom board_ehci_hcd_init() may be unneeded, so add a weak default implementation doing nothing. Signed-off-by: Beno?t Th?baudeau Cc: Marek Vasut Cc: Stefano Babic --- .../drivers/usb/host/ehci-mx5.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git u-boot-usb-76454b2.orig/drivers/usb/host/ehci-mx5.c u-boot-usb-76454b2/drivers/usb/host/ehci-mx5.c index 52aeae5..e3818be 100644 --- u-boot-usb-76454b2.orig/drivers/usb/host/ehci-mx5.c +++ u-boot-usb-76454b2/drivers/usb/host/ehci-mx5.c @@ -280,6 +280,14 @@ int mxc_set_usbcontrol(int port, unsigned int flags) return ret; } +int __board_ehci_hcd_init(int port) +{ + return 0; +} + +int board_ehci_hcd_init(int port) + __attribute((weak, alias("__board_ehci_hcd_init"))); + void __board_ehci_hcd_postinit(struct usb_ehci *ehci, int port) { }