From patchwork Wed Jan 17 10:08:19 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ladislav Michl X-Patchwork-Id: 10168961 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id EE363603B5 for ; Wed, 17 Jan 2018 10:08:25 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id DBE4F28451 for ; Wed, 17 Jan 2018 10:08:25 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id CEE9828464; Wed, 17 Jan 2018 10:08:25 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 1DBAE28451 for ; Wed, 17 Jan 2018 10:08:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750810AbeAQKIW (ORCPT ); Wed, 17 Jan 2018 05:08:22 -0500 Received: from eddie.linux-mips.org ([148.251.95.138]:34570 "EHLO cvs.linux-mips.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750806AbeAQKIW (ORCPT ); Wed, 17 Jan 2018 05:08:22 -0500 Received: (from localhost user: 'ladis' uid#1021 fake: STDIN (ladis@eddie.linux-mips.org)) by eddie.linux-mips.org id S23993497AbeAQKIUQsR6I (ORCPT + 1 other); Wed, 17 Jan 2018 11:08:20 +0100 Date: Wed, 17 Jan 2018 11:08:19 +0100 From: Ladislav Michl To: linux-usb@vger.kernel.org, linux-omap@vger.kernel.org Cc: Alan Stern , Greg Kroah-Hartman Subject: [PATCH v2] usb: ehci-omap: don't complain on -EPROBE_DEFER when no PHY found Message-ID: <20180117100819.GA4017@lenoch> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.9.2 (2017-12-15) Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Don't complain on -EPROBE_DEFER when when no PHY found, the driver probe will be retried later. Signed-off-by: Ladislav Michl Acked-by: Tony Lindgren Acked-by: Roger Quadros --- Changes: - v2: None, just added Tony's ack drivers/usb/host/ehci-omap.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c index 854b146a457d..fd6170962a1a 100644 --- a/drivers/usb/host/ehci-omap.c +++ b/drivers/usb/host/ehci-omap.c @@ -167,8 +167,9 @@ static int ehci_hcd_omap_probe(struct platform_device *pdev) continue; ret = PTR_ERR(phy); - dev_err(dev, "Can't get PHY device for port %d: %d\n", - i, ret); + if (ret != -EPROBE_DEFER) + dev_err(dev, "Can't get PHY device for port " + "%d: %d\n", i, ret); goto err_phy; }