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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 898E5CD6E5E for ; Wed, 11 Oct 2023 11:12:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:From:References:Cc:To: Subject:MIME-Version:Date:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=bCSPMKcFIvDFMjoIXvIH6DadF4jsO3l67nxsEcWXi80=; b=IWEimiSL0HDbnu A1MPQ44Q4Y30dV/IebCE/irU1zA9+iHgAr8rGqUPWMEOHOhaBb1bjUje+9k2RPVgdELTcatRe3uJL Nk25uvxYNCdy/3LosZrpf400/CG1wHn76Q0/uVEpNS8jevMBOzjOPPPoRCgCKkphw20cDrln8C8t7 rPv+F0xEmOs197IwwTm5qbA/oR3WLEsMugRUvKr3CB5rJj3H67bEhs3mO0dAc/U0d8UYiqhAO4taD byIUJCEZrT9ihhVKlJaTVao4bFrfAZo8zU5ZVwJ0i1NtNpNP5kPUUN/nLIlLesB5atNWfzMWWTXzQ in3lkMj73h8CmuAcowJA==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.96 #2 (Red Hat Linux)) id 1qqX7s-00FiQr-0E; Wed, 11 Oct 2023 11:11:40 +0000 Received: from ams.source.kernel.org ([145.40.68.75]) by bombadil.infradead.org with esmtps (Exim 4.96 #2 (Red Hat Linux)) id 1qqX7p-00FiQY-2n for linux-arm-kernel@lists.infradead.org; Wed, 11 Oct 2023 11:11:39 +0000 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by ams.source.kernel.org (Postfix) with ESMTP id D75C8B81ED4; Wed, 11 Oct 2023 11:11:35 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 22937C433C9; Wed, 11 Oct 2023 11:11:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697022695; bh=0uI2S60WTdV7FfQq9cdwuq29Q5F3hgzaJEmqz7lwfKE=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=NgKdolV/9BtLEaRjfZRJ5E08xBChLa0URk58vSGNkF9kFGifBKMcrW6ix8u7zLhUb 0DW5vMZe8kKhfgtg3+w8ecTJ0pEOTmVFUKkIgfzOAzG4zyWh5udhs4xVPn2GLq0QRR Lvd95XzCqrHOhKKzc2MxnVxNiIN9Skj+K3K2bpFD4bx5s//CB4GtocIWgggzVghcnU canDeiacIIy/yEpTI+Ih3c+6HXIGuOfSliWspA8QEvS4fcEJ9SipWHX7XdLNan7Gpa wpDlPJe0K2aBY6EchiZspQJrBJXCH49uZ4/9HVVP7K6v3slCyL6eKbcju7Xp588bZ5 7wIgO+4fwGLfA== Message-ID: <64562998-e992-4e46-8b9c-cc70655e648c@kernel.org> Date: Wed, 11 Oct 2023 20:11:33 +0900 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH] ata: imx: Use device_get_match_data() Content-Language: en-US To: Rob Herring , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team Cc: linux-ide@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org References: <20231006214442.339890-1-robh@kernel.org> From: Damien Le Moal Organization: Western Digital Research In-Reply-To: <20231006214442.339890-1-robh@kernel.org> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20231011_041138_071144_C26E42B4 X-CRM114-Status: UNSURE ( 6.43 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 10/7/23 06:44, 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 to for-6.7. Thanks ! -- Damien Le Moal Western Digital Research _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel