Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp2160573imm; Sun, 23 Sep 2018 22:20:28 -0700 (PDT) X-Google-Smtp-Source: ACcGV62+r+n44C9+oWb+vPk3bvHwCmERMZVUQ6yMhS2RJt4ZlzLdBHLQ30pllt/jE+a8htrhUBKf X-Received: by 2002:a63:141c:: with SMTP id u28-v6mr8018269pgl.247.1537766428163; Sun, 23 Sep 2018 22:20:28 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1537766428; cv=none; d=google.com; s=arc-20160816; b=P4U4ogveHU/GLszytRNhvgGxPgU60eO9Gq+A6qaE//Y++ZJz2Evior8IlYw9kj0wQO 2DwiZT1Is1YTy3kKoSjIQ0aFh57lDAJwJY1KdJBk9IfUmJGRPTCJ2/9iFPB/ZmUqVdPV 0EsZtQGtotgdWQW2TEs7qyrS1LwAPce8j4kG9I5FTSw7qasuhPa/HDPFyhkJCJzBUiRK eVDPNK1ki3xfgsf39Kd4ZddYedl0TzDkcDSdMTcyepDTsflsSpqhDGnxqeJzJs1OJGMM i3I+ESb9fyRSNjeFMQqCWu67toc8UTUYkiqRd+HPmCmBEyU/iHMn/DFZrOnM9xi49GuQ g8+A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=XCNzCLjHRSxfjKcZrbLkvkKgCYXnur9w7+ozdgCGeWs=; b=1CH2TC2FybBO/CIVNlZrrJQV6THY/RzjDvZzb3u4elGu25tQgAW4UqbSu8qzIJka7O E3zmD48/+UI7/GcQs9XHVFyv1uauHGox4g9XJODbQmX3M3vjPUfubQ0337zjAP9Mn5T3 WIZn5K/dugwaMVFwIhnxlHUPKS/F4j+PRAAT5CbNpCLN12gmXraMsPkowmOQYzIy4Y78 qJIhbCZR7nwz4p8wNDysEJ0BZHoG1LI+PBr0gvubQ6d2SuTYFTg/Fw34KfNQx3UMPUtX 6va7xe4e1RW7djzIfGJz9qzB0e1bCrfMW9I3pGbE1mCsoKUCVTXFHA/ML8JCMb/ibJi8 +g8Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id c22-v6si34045679plo.271.2018.09.23.22.20.12; Sun, 23 Sep 2018 22:20:28 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727445AbeIXLSz (ORCPT + 99 others); Mon, 24 Sep 2018 07:18:55 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:55368 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725825AbeIXLSy (ORCPT ); Mon, 24 Sep 2018 07:18:54 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 1E0A9FF7; Mon, 24 Sep 2018 05:18:34 +0000 (UTC) Date: Mon, 24 Sep 2018 07:18:32 +0200 From: Greg Kroah-Hartman To: Silesh C V Cc: "Rafael J. Wysocki" , linux-kernel@vger.kernel.org Subject: Re: [PATCH] Driver core: add bus_find_device_by_fwnode Message-ID: <20180924051832.GB1974@kroah.com> References: <1537763755-28871-1-git-send-email-svellattu@mvista.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1537763755-28871-1-git-send-email-svellattu@mvista.com> User-Agent: Mutt/1.10.1 (2018-07-13) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Sep 24, 2018 at 10:05:55AM +0530, Silesh C V wrote: > Some drivers need to find the device on a bus having a specific firmware > node. Currently, such drivers have their own implementations to do this. > Provide a helper similar to bus_find_device_by_name so that each driver > does not have to reinvent this. Is there a second patch that uses this function? We don't add api calls that are not used. thanks, greg k-h