Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

USB: ohci: da8xx: remove clk con_id

The ohci-da8xx device only has one clock, so a con_id is not needed, so
remove it. This way we don't have to add an unnecessary property to the
device tree bindings for the clock.

Signed-off-by: David Lechner <david@lechnology.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

David Lechner and committed by
Greg Kroah-Hartman
e7f49360 985583a6

+1 -1
+1 -1
drivers/usb/host/ohci-da8xx.c
··· 413 413 da8xx_ohci = to_da8xx_ohci(hcd); 414 414 da8xx_ohci->hcd = hcd; 415 415 416 - da8xx_ohci->usb11_clk = devm_clk_get(&pdev->dev, "usb11"); 416 + da8xx_ohci->usb11_clk = devm_clk_get(&pdev->dev, NULL); 417 417 if (IS_ERR(da8xx_ohci->usb11_clk)) { 418 418 error = PTR_ERR(da8xx_ohci->usb11_clk); 419 419 if (error != -EPROBE_DEFER)