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 189D5C433EF for ; Sat, 23 Apr 2022 02:35:16 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231753AbiDWCiJ (ORCPT ); Fri, 22 Apr 2022 22:38:09 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41618 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231970AbiDWCiI (ORCPT ); Fri, 22 Apr 2022 22:38:08 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2AA6610521E; Fri, 22 Apr 2022 19:35: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 ams.source.kernel.org (Postfix) with ESMTPS id CD182B8335C; Sat, 23 Apr 2022 02:35:11 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 87D4AC385A0; Sat, 23 Apr 2022 02:35:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650681310; bh=z3CKbmSDeHgI81qNxkGjfjiRlyOED50j3utuXtqoWr4=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=b9FPiDYY5ggR/JGAgaTTnkafrxtE0nRWpqsv5g5D+UX4Zqlx7ON8QNmha0Y3jQoMC HSNVq+MFleNk51GvXw2vkxdkOCvBNFBYI1zXbC1+MCt0UDAiT4uqyVW4mfksusr/9L MRFb1Mt/O6G2Qh72unKczc0J94SinZhWdxJb7lIKJ0bJF2g5/ap/cSfB8jjE/kGhDV 42GcS9Bs7S+dAHsmvxqIc88e9bPwEWy2H05UB/LqEHQMSMIj7hWJ83nopY3tfUQujn 1j5C7PEWBj2pbJtM5vo1VHFevtOrlwKivPkZIRMy3P4cLOpg4ECyh60oaMREvS0hBp umJZrKn8ayTVw== Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20220407151831.2371706-10-steve@sk2.org> References: <20220407151831.2371706-1-steve@sk2.org> <20220407151831.2371706-10-steve@sk2.org> Subject: Re: [PATCH v2 09/10] clk: si570: 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:35:07 -0700 User-Agent: alot/0.10 Message-Id: <20220423023510.87D4AC385A0@smtp.kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Stephen Kitt (2022-04-07 08:18:30) > 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