Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756237AbdLOK1R (ORCPT ); Fri, 15 Dec 2017 05:27:17 -0500 Received: from relmlor4.renesas.com ([210.160.252.174]:24028 "EHLO relmlie3.idc.renesas.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1754749AbdLOK1K (ORCPT ); Fri, 15 Dec 2017 05:27:10 -0500 X-IronPort-AV: E=Sophos;i="5.45,404,1508770800"; d="scan'208";a="266491450" From: Yoshihiro Shimoda To: Vladimir Murzin , "linux-renesas-soc@vger.kernel.org" CC: "horms+renesas@verge.net.au" , "kishon@ti.com" , "arnd@arndb.de" , "linux-kernel@vger.kernel.org" Subject: RE: [PATCH] phy: rcar-gen3-usb2: add dependency on USB Thread-Topic: [PATCH] phy: rcar-gen3-usb2: add dependency on USB Thread-Index: AQHTdY5dnmslKR6x9kikH5TXu/DCJqNEMogQ Date: Fri, 15 Dec 2017 10:27:06 +0000 Message-ID: References: <1513333220-44070-1-git-send-email-vladimir.murzin@arm.com> In-Reply-To: <1513333220-44070-1-git-send-email-vladimir.murzin@arm.com> Accept-Language: ja-JP, en-US Content-Language: ja-JP X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: spf=none (sender IP is ) smtp.mailfrom=yoshihiro.shimoda.uh@renesas.com; x-originating-ip: [211.11.155.139] x-ms-publictraffictype: Email x-microsoft-exchange-diagnostics: 1;TY1PR06MB0990;20:vSIwpS6rvX5S86iuOWf+MzXJZ/bD2xJYkTRUlmviMu3A2xbzKZLoFx2efk+6R0A26mG/Uzj2x9TyQ0hArCa1VMkV1OGdgrLLAH28RHF+2OKtZVEonlcUuTPPDpNN2fPciubKZxiOx4PvGB2gXcrd7ei8WvIIRoMmWAMrHbUh4L0= x-ms-exchange-antispam-srfa-diagnostics: SSOS; x-ms-office365-filtering-correlation-id: 57cb1a32-ee00-4ed9-b1c3-08d543a66419 x-ms-office365-filtering-ht: Tenant x-microsoft-antispam: UriScan:;BCL:0;PCL:0;RULEID:(5600026)(4604075)(4534020)(4602075)(4627115)(201703031133081)(201702281549075)(48565401081)(2017052603307);SRVR:TY1PR06MB0990; x-ms-traffictypediagnostic: TY1PR06MB0990: x-microsoft-antispam-prvs: x-exchange-antispam-report-test: UriScan:(180628864354917); x-exchange-antispam-report-cfa-test: BCL:0;PCL:0;RULEID:(6040450)(2401047)(5005006)(8121501046)(93006095)(93001095)(3231023)(10201501046)(3002001)(6055026)(6041248)(20161123558100)(20161123555025)(20161123560025)(201703131423075)(201702281528075)(201703061421075)(201703061406153)(20161123564025)(20161123562025)(6072148)(201708071742011);SRVR:TY1PR06MB0990;BCL:0;PCL:0;RULEID:(100000803101)(100110400095);SRVR:TY1PR06MB0990; x-forefront-prvs: 05220145DE x-forefront-antispam-report: SFV:NSPM;SFS:(10019020)(39860400002)(346002)(366004)(376002)(396003)(189003)(13464003)(199004)(6246003)(2906002)(316002)(4326008)(53936002)(110136005)(345774005)(5660300001)(6306002)(2950100002)(25786009)(3660700001)(6506007)(54906003)(3280700002)(97736004)(9686003)(77096006)(6436002)(86362001)(229853002)(55016002)(7696005)(81156014)(966005)(106356001)(76176011)(81166006)(14454004)(66066001)(478600001)(99286004)(230783001)(8936002)(102836003)(3846002)(6116002)(8676002)(2501003)(74316002)(305945005)(7736002)(105586002)(33656002)(2900100001)(68736007);DIR:OUT;SFP:1102;SCL:1;SRVR:TY1PR06MB0990;H:TY1PR06MB0992.apcprd06.prod.outlook.com;FPR:;SPF:None;PTR:InfoNoRecords;MX:1;A:1;LANG:en; spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 X-OriginatorOrg: renesas.com X-MS-Exchange-CrossTenant-Network-Message-Id: 57cb1a32-ee00-4ed9-b1c3-08d543a66419 X-MS-Exchange-CrossTenant-originalarrivaltime: 15 Dec 2017 10:27:06.4424 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Hosted X-MS-Exchange-CrossTenant-id: 53d82571-da19-47e4-9cb4-625a166a4a2a X-MS-Exchange-Transport-CrossTenantHeadersStamped: TY1PR06MB0990 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from quoted-printable to 8bit by nfs id vBFARL5d023638 Content-Length: 830 Lines: 28 Hi, > -----Original Message----- > From: Vladimir Murzin, Sent: Friday, December 15, 2017 7:20 PM > > Following error showed up: > > drivers/phy/renesas/phy-rcar-gen3-usb2.o: In function `rcar_gen3_phy_usb2_probe': > /work/tools/linux/drivers/phy/renesas/phy-rcar-gen3-usb2.c:444: undefined reference to `of_usb_get_dr_mode_by_phy' > Makefile:993: recipe for target 'vmlinux' failed > make: *** [vmlinux] Error 1 > > with CONFIG_USB_SUPPORT=n > > Add dependency on USB_SUPPORT and select USB_COMMON to make sure that > of_usb_get_dr_mode_by_phy() is available. > > Signed-off-by: Vladimir Murzin Thank you for the patch! However, Arnd already sent such a patch before. https://lkml.org/lkml/2017/11/2/373 The latest Linux-phy.git doesn't apply it yet though... Best regards, Yoshihiro Shimoda