]> Pileus Git - ~andy/linux/commitdiff
usb: phy: samsung: Fix an error message typo
authorSachin Kamat <sachin.kamat@linaro.org>
Mon, 15 Jul 2013 08:36:54 +0000 (14:06 +0530)
committerFelipe Balbi <balbi@ti.com>
Mon, 15 Jul 2013 10:05:29 +0000 (13:05 +0300)
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>
drivers/usb/phy/phy-samsung-usb2.c

index 1011c16ade7e4b2de81db46d0ab8ddfc599b24bc..758b86d0fcb386af39561d2d25e8ad9983c97fbf 100644 (file)
@@ -388,7 +388,7 @@ static int samsung_usb2phy_probe(struct platform_device *pdev)
                clk = devm_clk_get(dev, "otg");
 
        if (IS_ERR(clk)) {
-               dev_err(dev, "Failed to get otg clock\n");
+               dev_err(dev, "Failed to get usbhost/otg clock\n");
                return PTR_ERR(clk);
        }