From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id E55EEC28EBD for ; Mon, 10 Jun 2019 01:50:32 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id BA753206E0 for ; Mon, 10 Jun 2019 01:50:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730267AbfFJBu2 (ORCPT ); Sun, 9 Jun 2019 21:50:28 -0400 Received: from Mailgw01.mediatek.com ([1.203.163.78]:64539 "EHLO mailgw01.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1729954AbfFJBu2 (ORCPT ); Sun, 9 Jun 2019 21:50:28 -0400 X-UUID: a4426e538ff749c7a00a11ca68c610d1-20190610 X-UUID: a4426e538ff749c7a00a11ca68c610d1-20190610 Received: from mtkcas35.mediatek.inc [(172.27.4.253)] by mailgw01.mediatek.com (envelope-from ) (mailgw01.mediatek.com ESMTP with TLS) with ESMTP id 1004482231; Mon, 10 Jun 2019 09:50:12 +0800 Received: from MTKCAS36.mediatek.inc (172.27.4.186) by MTKMBS31N1.mediatek.inc (172.27.4.69) with Microsoft SMTP Server (TLS) id 15.0.1395.4; Mon, 10 Jun 2019 09:50:11 +0800 Received: from [10.17.3.153] (172.27.4.253) by MTKCAS36.mediatek.inc (172.27.4.170) with Microsoft SMTP Server id 15.0.1395.4 via Frontend Transport; Mon, 10 Jun 2019 09:50:09 +0800 Message-ID: <1560131408.8487.112.camel@mhfsdcap03> Subject: Re: [PATCH v6 06/10] device connection: Add fwnode_connection_find_match() From: Chunfeng Yun To: Heikki Krogerus CC: Rob Herring , Greg Kroah-Hartman , Mark Rutland , "Matthias Brugger" , Adam Thomson , Li Jun , "Badhri Jagan Sridharan" , Hans de Goede , Andy Shevchenko , Min Guo , , , , , , Biju Das , Linus Walleij , Yu Chen Date: Mon, 10 Jun 2019 09:50:08 +0800 In-Reply-To: <20190607103026.GE10298@kuha.fi.intel.com> References: <1559115828-19146-1-git-send-email-chunfeng.yun@mediatek.com> <1559115828-19146-7-git-send-email-chunfeng.yun@mediatek.com> <20190607103026.GE10298@kuha.fi.intel.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.2.3-0ubuntu6 Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-MTK: N Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Heikki, On Fri, 2019-06-07 at 13:30 +0300, Heikki Krogerus wrote: > Hi, > > On Wed, May 29, 2019 at 03:43:44PM +0800, Chunfeng Yun wrote: > > From: Heikki Krogerus > > > > The fwnode_connection_find_match() function is exactly the > > same as device_connection_find_match(), except it takes > > struct fwnode_handle as parameter instead of struct device. > > That allows locating device connections before the device > > entries have been created. > > > > Signed-off-by: Heikki Krogerus > > This one is also missing your SoB. > > There are now some other changes to the devcon API in Rafael's tree > [1] that will conflict with this one. I'm attaching a modified version > of the patch that is rebased on top of today's linux-next. If you use > it, you should make a note (probable in the cover letter) that the > series now depends on Rafael's tree. Got it, thanks > > [1] https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git/log/?h=linux-next > > > thanks, > From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chunfeng Yun Subject: Re: [PATCH v6 06/10] device connection: Add fwnode_connection_find_match() Date: Mon, 10 Jun 2019 09:50:08 +0800 Message-ID: <1560131408.8487.112.camel@mhfsdcap03> References: <1559115828-19146-1-git-send-email-chunfeng.yun@mediatek.com> <1559115828-19146-7-git-send-email-chunfeng.yun@mediatek.com> <20190607103026.GE10298@kuha.fi.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20190607103026.GE10298@kuha.fi.intel.com> Sender: linux-kernel-owner@vger.kernel.org To: Heikki Krogerus Cc: Rob Herring , Greg Kroah-Hartman , Mark Rutland , Matthias Brugger , Adam Thomson , Li Jun , Badhri Jagan Sridharan , Hans de Goede , Andy Shevchenko , Min Guo , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-mediatek@lists.infradead.org, Biju Das , Linus Walleij , Yu Chen List-Id: devicetree@vger.kernel.org Hi Heikki, On Fri, 2019-06-07 at 13:30 +0300, Heikki Krogerus wrote: > Hi, > > On Wed, May 29, 2019 at 03:43:44PM +0800, Chunfeng Yun wrote: > > From: Heikki Krogerus > > > > The fwnode_connection_find_match() function is exactly the > > same as device_connection_find_match(), except it takes > > struct fwnode_handle as parameter instead of struct device. > > That allows locating device connections before the device > > entries have been created. > > > > Signed-off-by: Heikki Krogerus > > This one is also missing your SoB. > > There are now some other changes to the devcon API in Rafael's tree > [1] that will conflict with this one. I'm attaching a modified version > of the patch that is rebased on top of today's linux-next. If you use > it, you should make a note (probable in the cover letter) that the > series now depends on Rafael's tree. Got it, thanks > > [1] https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git/log/?h=linux-next > > > thanks, > From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.0 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,T_DKIMWL_WL_HIGH,UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 4FC12C28EBD for ; Mon, 10 Jun 2019 01:50:47 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 255B3206E0 for ; Mon, 10 Jun 2019 01:50:47 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="Trhf0Oow" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 255B3206E0 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=mediatek.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Date:To:From:Subject:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=Lt0NQaVWiqJqy5DVaZRKHgL3lz7FZD7r96aDetPXVV0=; b=Trhf0OowwehUQu srep3sAfdjtHVLzYoB1V7m7RRRO17GBIgYQHdmJA9rwrvkVnReRXftRsIFJ4KEG6XITXH9qgqMK74 dql//X3TarKokQK9nATp8oQ/vGRGQ4VPgNk3jVtY+tj7VdKl5mKb0U3PLUUJBQHXQVDrb0FKfXIFq tJ16WlcWJ+1Bogvu0LN6H/Cm9sF+0x+uuYo2coJ7EWVeg6a7KAKDTjumQITHqazJ4KcRyhXS8XUzB UovsPHdfB5TrcVojFpPKIbC6suHI1A8M2rXgx3OshqvL2+T9G5DOYZuXnLRQHxP28wJqEaKpcFrwi NHf2QMPQgZghdpJOWIuw==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92 #3 (Red Hat Linux)) id 1ha9SO-0007Gk-Rr; Mon, 10 Jun 2019 01:50:44 +0000 Received: from mailgw01.mediatek.com ([216.200.240.184]) by bombadil.infradead.org with esmtps (Exim 4.92 #3 (Red Hat Linux)) id 1ha9SL-0007Fg-7p; Mon, 10 Jun 2019 01:50:42 +0000 X-UUID: 1d865b37c11b421ba6782eea90940aba-20190609 X-UUID: 1d865b37c11b421ba6782eea90940aba-20190609 Received: from mtkcas66.mediatek.inc [(172.29.193.44)] by mailgw01.mediatek.com (envelope-from ) (musrelay.mediatek.com ESMTP with TLS) with ESMTP id 1180069066; Sun, 09 Jun 2019 17:50:19 -0800 Received: from MTKMBS31N1.mediatek.inc (172.27.4.69) by MTKMBS62N2.mediatek.inc (172.29.193.42) with Microsoft SMTP Server (TLS) id 15.0.1395.4; Sun, 9 Jun 2019 18:50:16 -0700 Received: from MTKCAS36.mediatek.inc (172.27.4.186) by MTKMBS31N1.mediatek.inc (172.27.4.69) with Microsoft SMTP Server (TLS) id 15.0.1395.4; Mon, 10 Jun 2019 09:50:11 +0800 Received: from [10.17.3.153] (172.27.4.253) by MTKCAS36.mediatek.inc (172.27.4.170) with Microsoft SMTP Server id 15.0.1395.4 via Frontend Transport; Mon, 10 Jun 2019 09:50:09 +0800 Message-ID: <1560131408.8487.112.camel@mhfsdcap03> Subject: Re: [PATCH v6 06/10] device connection: Add fwnode_connection_find_match() From: Chunfeng Yun To: Heikki Krogerus Date: Mon, 10 Jun 2019 09:50:08 +0800 In-Reply-To: <20190607103026.GE10298@kuha.fi.intel.com> References: <1559115828-19146-1-git-send-email-chunfeng.yun@mediatek.com> <1559115828-19146-7-git-send-email-chunfeng.yun@mediatek.com> <20190607103026.GE10298@kuha.fi.intel.com> X-Mailer: Evolution 3.2.3-0ubuntu6 MIME-Version: 1.0 X-MTK: N X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20190609_185041_290828_99AAC4F0 X-CRM114-Status: GOOD ( 14.27 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Mark Rutland , devicetree@vger.kernel.org, Hans de Goede , Greg Kroah-Hartman , Linus Walleij , linux-usb@vger.kernel.org, Yu Chen , linux-kernel@vger.kernel.org, Biju Das , Badhri Jagan Sridharan , Andy Shevchenko , Rob Herring , linux-mediatek@lists.infradead.org, Min Guo , Matthias Brugger , Adam Thomson , linux-arm-kernel@lists.infradead.org, Li Jun Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Heikki, On Fri, 2019-06-07 at 13:30 +0300, Heikki Krogerus wrote: > Hi, > > On Wed, May 29, 2019 at 03:43:44PM +0800, Chunfeng Yun wrote: > > From: Heikki Krogerus > > > > The fwnode_connection_find_match() function is exactly the > > same as device_connection_find_match(), except it takes > > struct fwnode_handle as parameter instead of struct device. > > That allows locating device connections before the device > > entries have been created. > > > > Signed-off-by: Heikki Krogerus > > This one is also missing your SoB. > > There are now some other changes to the devcon API in Rafael's tree > [1] that will conflict with this one. I'm attaching a modified version > of the patch that is rebased on top of today's linux-next. If you use > it, you should make a note (probable in the cover letter) that the > series now depends on Rafael's tree. Got it, thanks > > [1] https://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git/log/?h=linux-next > > > thanks, > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel