From: Marek Vasut Date: Mon, 30 Nov 2015 17:15:33 +0000 (+0100) Subject: sunxi: usb: Rename the sunxi usb driver DM entry X-Git-Tag: v2016.01-rc2~5^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=40c920821d0cbe6a243aa358187aa024c0c1ad5f;p=oweals%2Fu-boot.git sunxi: usb: Rename the sunxi usb driver DM entry The DM entry should be unique, otherwise it will collide with other drivers. Fix this by assigning the driver a more unique name than usb_ehci. Signed-off-by: Marek Vasut Cc: Hans de Goede Cc: Ian Campbell Cc: Simon Glass --- diff --git a/drivers/usb/host/ehci-sunxi.c b/drivers/usb/host/ehci-sunxi.c index 38d5f92ad0..d494ca10bb 100644 --- a/drivers/usb/host/ehci-sunxi.c +++ b/drivers/usb/host/ehci-sunxi.c @@ -87,7 +87,7 @@ static const struct udevice_id ehci_usb_ids[] = { { } }; -U_BOOT_DRIVER(usb_ehci) = { +U_BOOT_DRIVER(ehci_sunxi) = { .name = "ehci_sunxi", .id = UCLASS_USB, .of_match = ehci_usb_ids,