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 C2DC2C433EF for ; Sat, 23 Apr 2022 02:33:02 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231858AbiDWCf4 (ORCPT ); Fri, 22 Apr 2022 22:35:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:33118 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232010AbiDWCfz (ORCPT ); Fri, 22 Apr 2022 22:35:55 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EB5865E175; Fri, 22 Apr 2022 19:32:59 -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 dfw.source.kernel.org (Postfix) with ESMTPS id 3E571617E1; Sat, 23 Apr 2022 02:32:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 997A9C385A0; Sat, 23 Apr 2022 02:32:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650681178; bh=DE5LURZ4ozSWbcQKUHvYflZMNPzquPGar0P8RlPQuDw=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=rqmZBUovmdk91fgcxjzBV9/hSxOO5VP46ca/ncLk/KHLir1bb9tLE1gWAel2jgLhr cjKM/7ws6NRrCJf1gPEbht7nKbqi3nf7DQ6SpAtejc06enJ4FeNk2K/L+hxtN1QxS5 0FJXfbfPuPciN86X/HXcrWh3BwC1nEfXAlWleN0kz9i+FygpynaAxshDlm4Hmb0zBj H69EN7wDg+XCtmsbEOyOJOOI99UZFP3aQaVsOQHmtzYYsTZo8ATV6r8XmkY1ywI6WT QHLPIjCxwWvimZDbt5AoPs1T/j5Wq1URL0+I6da9USC/gS0NI0xHdbFdTTihH6+gd2 ZBFDdanfpIlGQ== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220407151831.2371706-4-steve@sk2.org> References: <20220407151831.2371706-1-steve@sk2.org> <20220407151831.2371706-4-steve@sk2.org> Subject: Re: [PATCH v2 03/10] clk: cs2000-cp: 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:55 -0700 User-Agent: alot/0.10 Message-Id: <20220423023258.997A9C385A0@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Stephen Kitt (2022-04-07 08:18:24) > 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