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 3916AE784AF for ; Mon, 9 Oct 2023 22:22:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1378904AbjJIWWv (ORCPT ); Mon, 9 Oct 2023 18:22:51 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49836 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232390AbjJIWWu (ORCPT ); Mon, 9 Oct 2023 18:22:50 -0400 Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B6B6D9E for ; Mon, 9 Oct 2023 15:22:47 -0700 (PDT) From: Thomas Gleixner DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1696890165; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=mu10TlOwpiIHtysKbrBxTz77TSQUQDjSHJgGghr0Kv4=; b=SmSZF4vfYBfWQsa44X3C1PiDRMosLjLxN6aRIqNaLsoMtVDShtcKGaCmll8ZCqxsPOn7r6 fnnf8ItSpmjqH8+1KXuMTzszvQL19+Cx3Io5qasGbkssAiGR1JgMPEdJ0SV55xxRgbKHdv +1bvKvTU7vTWEMwZCogNKSuRItN3zCT/pF3am8lXyhbZNskgBTVCo1Gp7TrMZH3GFaFeFM PBnOAOgh8U36JvAFzjtsh5A1lJhhvZMR0SIfLveFyQU9UR52lxMoskbEcxIvH4KlJY3fks VrN2uNsrDD4I8vaRaKcCoz7o+eHL+pvEkR84vmj2o8+lt3QxLDrSnVIC3cpUUA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1696890165; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=mu10TlOwpiIHtysKbrBxTz77TSQUQDjSHJgGghr0Kv4=; b=JegBx0ZrK84MSh2kn+6hspTsHnc+K44bhqB5ZhkFPVLX20wHdNLqUBDvtiT/R0fj7S0Bon SUH38PO4kqSRJUAw== To: Rob Herring , Marc Zyngier Cc: linux-kernel@vger.kernel.org Subject: Re: [PATCH] irqchip: ls-scfg-msi: Use device_get_match_data() In-Reply-To: <20231006224422.442491-1-robh@kernel.org> References: <20231006224422.442491-1-robh@kernel.org> Date: Tue, 10 Oct 2023 00:22:45 +0200 Message-ID: <8734yjphai.ffs@tglx> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Oct 06 2023 at 17:44, Rob Herring wrote: https://www.kernel.org/doc/html/latest/process/maintainer-tip.html#patch-subject > 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. So this tells me WHAT the patch is doing, but gives me zero information WHY. Thanks, tglx