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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E3C38C433EF for ; Sat, 23 Apr 2022 02:32:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231753AbiDWCfU (ORCPT ); Fri, 22 Apr 2022 22:35:20 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58936 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231733AbiDWCfU (ORCPT ); Fri, 22 Apr 2022 22:35:20 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [IPv6:2604:1380:40e1:4800::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 183F45E143; Fri, 22 Apr 2022 19:32:25 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 71634CE2E45; Sat, 23 Apr 2022 02:32:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 75B47C385A0; Sat, 23 Apr 2022 02:32:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650681141; bh=dKbDsWIxzId4sVO9IYKZLxmEb8V/7ZxzwKP19SLJrnI=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=pNpBlmxoKXPZEBLBxSit60KQFpktqZE2coflpGSYyzK+Jcyho/dpaQMi87l2WBYJZ lUIu5mubjFJLYW9108HX8SQ+tHPuclhcdqp7k/7fXpwUV5KSIwhE6Q1WXxphb4sCUc e8mzVYBwQgrMoe31tYsEJ4ysVA47Eh/1dY1EhcgClYRnodSlBCF0npBkMUIfDp+rl9 ItLSGMHE246VSXlTqzuj/5etzGuAtkxueoLXean8CfDWKcEQ53SoTif0j3oKznyb+h aAxv/tCXmIYg6w6RuI7T93yLHVgF5eKP/lx/goEopRGHHpjWFXzwDNmrZpmIv80lBV vrSThePMtuk0Q== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220407151831.2371706-2-steve@sk2.org> References: <20220407151831.2371706-1-steve@sk2.org> <20220407151831.2371706-2-steve@sk2.org> Subject: Re: [PATCH v2 01/10] clk: cdce706: use simple i2c probe function From: Stephen Boyd Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org, Wolfram Sang , Stephen Kitt To: Michael Turquette , Stephen Kitt Date: Fri, 22 Apr 2022 19:32:18 -0700 User-Agent: alot/0.10 Message-Id: <20220423023221.75B47C385A0@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Stephen Kitt (2022-04-07 08:18:22) > The i2c probe function here doesn't use the id information provided in > its second argument, so the single-parameter i2c probe function > ("probe_new") can be used instead. >=20 > This avoids scanning the identifier tables during probes. >=20 > Signed-off-by: Stephen Kitt > --- Applied to clk-next