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

usb: phy: samsung: Fix an error message typo

The error message is common to both clk_get functions. Update it
accordingly.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>

authored by

Sachin Kamat and committed by
Felipe Balbi
24e6bfd9 908b9613

+1 -1
+1 -1
drivers/usb/phy/phy-samsung-usb2.c
··· 388 388 clk = devm_clk_get(dev, "otg"); 389 389 390 390 if (IS_ERR(clk)) { 391 - dev_err(dev, "Failed to get otg clock\n"); 391 + dev_err(dev, "Failed to get usbhost/otg clock\n"); 392 392 return PTR_ERR(clk); 393 393 } 394 394