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=-12.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 A0693C2B9F4 for ; Fri, 25 Jun 2021 10:54:32 +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 65D2C61450 for ; Fri, 25 Jun 2021 10:54:32 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 65D2C61450 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=arm.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+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.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=zB7vWWshzorCqN0l+qEgJIJsEXsmQz1wNTIAGYMsr8c=; b=NLYkz0hticyXoP 9eliHLQnHS/P0NR6mUY9ZDsojFOpua96Hf2rkXlEF3sQ6pogGbs2PcryW+EdLFRxdcah4z53dWvAt uGoK24R7Kl0HwSwfYnGL0nnomvOB4aE8q3jV1nq5Is/6hDVnD4cLOtNyhUrFRj7rxykpvmrZtNeD+ 16sz6Nbymnfd8dCLWtqBDfUiMsWzdSa2fKdTTs2f1q9tJTWpq3GEjd+1Gs1vN4EMXs0jZsAfpzOUX /WeRpEBRVWB84NGZPKVMywcarplQdJY7YQJLyxNY0pOrm57YIwbU8vCymA1l5weL2qX5+cmu/cJuj kikgXYXuPn3L6Rg3AfMw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1lwjS7-0017ww-Uk; Fri, 25 Jun 2021 10:52:53 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1lwiws-000vBk-TV for linux-arm-kernel@lists.infradead.org; Fri, 25 Jun 2021 10:20:36 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 88395ED1; Fri, 25 Jun 2021 03:20:30 -0700 (PDT) Received: from usa.arm.com (e103737-lin.cambridge.arm.com [10.1.197.49]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id CEFBB3F719; Fri, 25 Jun 2021 03:20:29 -0700 (PDT) From: Sudeep Holla To: linux-arm-kernel@lists.infradead.org, Sudeep Holla Cc: Cristian Marussi , =?UTF-8?q?Uwe=20Kleine-K=C3=B6nig?= Subject: Re: [PATCH 1/2] firmware: arm_scmi: Simplify device probe function on the bus Date: Fri, 25 Jun 2021 11:20:23 +0100 Message-Id: <162461633618.205262.1557097675073046633.b4-ty@arm.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210624095059.4010157-1-sudeep.holla@arm.com> References: <20210624095059.4010157-1-sudeep.holla@arm.com> MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210625_032035_050534_36E67930 X-CRM114-Status: UNSURE ( 6.33 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Thu, 24 Jun 2021 10:50:58 +0100, Sudeep Holla wrote: > When the driver core calls the probe callback it already checked that > the devices match, so there is no need to call the match callback again. Applied to sudeep.holla/linux (for-next/scmi), thanks! [1/2] firmware: arm_scmi: Simplify device probe function on the bus https://git.kernel.org/sudeep.holla/c/113e793d18 [2/2] firmware: arm_scmi: Ensure drivers provide a probe function https://git.kernel.org/sudeep.holla/c/8ecab77009 -- Regards, Sudeep _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel