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 6C441C433F5 for ; Sat, 23 Apr 2022 02:34:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232163AbiDWChK (ORCPT ); Fri, 22 Apr 2022 22:37:10 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37942 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232187AbiDWChJ (ORCPT ); Fri, 22 Apr 2022 22:37:09 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0A60E5E175; Fri, 22 Apr 2022 19:34:13 -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 62E98CE2E18; Sat, 23 Apr 2022 02:34:12 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id A3852C385A4; Sat, 23 Apr 2022 02:34:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650681250; bh=gNXzUDegN2S9+7K0H/tJw6COVM/dgP4VNJrvwPcSKkg=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=uY8mi0w2TEMhLXRBm7lwsdXft0rOhq3kQjhEfNw6JXABh61t3HQzVqSBA+4tsbga1 41gZqL2T/VhV5L1cyVool81mKwaAPuRNySZFIJ8tzGoCicCWm34TdWPvwNPosAn0oF 0uZ1XZyurB8R6d5ONC0HaiOMaAzxTabJc/qmbC1PsY5OnvIy8iIgaS25DiuUR0nynH Nqv2DRvPI9692kiIhZmjjDc0NSyHtCChYiq/WpPJZuCNhj77M9V3RJZw8mdVZaoHZg 47/9CMiNMuljAnCbYlemRFdCxx1Ffmvhd+7W3SB4lmPXmCXyudHql20BjXr88B5nO4 bEwxdud4BFlBA== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220407151831.2371706-8-steve@sk2.org> References: <20220407151831.2371706-1-steve@sk2.org> <20220407151831.2371706-8-steve@sk2.org> Subject: Re: [PATCH v2 07/10] clk: si5351: use i2c_match_id and simple i2c probe 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:34:07 -0700 User-Agent: alot/0.10 Message-Id: <20220423023410.A3852C385A4@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Stephen Kitt (2022-04-07 08:18:28) > As part of the ongoing i2c transition to the simple probe > ("probe_new"), this patch uses i2c_match_id to retrieve the > driver_data for the probed device. The id parameter is thus no longer > necessary and the simple probe can be used instead. >=20 > Signed-off-by: Stephen Kitt > --- Applied to clk-next