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 65E20C4167B for ; Mon, 27 Nov 2023 03:06:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231748AbjK0DGE (ORCPT ); Sun, 26 Nov 2023 22:06:04 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:54470 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232229AbjK0DFx (ORCPT ); Sun, 26 Nov 2023 22:05:53 -0500 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id E61EC1AB for ; Sun, 26 Nov 2023 19:05:49 -0800 (PST) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 11E7FC433C7; Mon, 27 Nov 2023 03:05:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1701054349; bh=wJFAeOGshFDxEPHQZh6FK2rmzXE1y7l9c9VTtj4pc3w=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=oFqQMVQFQ3DjdFUnEJ+P62Q0ZEojQAsFJvYG6U4Gm/577vXfVLZumcRl+IyMTGw/T +cOgBYLIhtC1bbL1p8tNr6wk9FUhjvaIwJAefnHg3uI5GHi31PcWCnJHKjjPoVH/oA ijkq09PJ7DBWlDbpYMlvb9gqNOG/szr/PW1TycPyM+j+B/Vn2nIWdtlRtIt3OX62nq 4UfStMXJUYbWSmmi3PADbmR9hP0pSPc64XdWRIB0Q2k4V+64qXjpC4B94di1gh93OK +hUgTbdjdTgXqi72nDEMYv5Boku4bqL4EpKsJA4LgVYoy5H9hGyvBZg3bJQRf8rEzu d1oE7WpPT4cLw== Date: Mon, 27 Nov 2023 11:05:44 +0800 From: Shawn Guo To: Rob Herring Cc: Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [RESEND PATCH] bus: imx-weim: Use device_get_match_data() Message-ID: <20231127030544.GX87953@dragon> References: <20231025161221.371153-1-robh@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231025161221.371153-1-robh@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Oct 25, 2023 at 11:12:21AM -0500, Rob Herring wrote: > Use preferred device_get_match_data() instead of of_match_device() to > get the driver match data. With this, adjust the includes to explicitly > include the correct headers. > > Signed-off-by: Rob Herring Applied, thanks!