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 70DB7C25B0E for ; Tue, 16 Aug 2022 17:40:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236097AbiHPRkN (ORCPT ); Tue, 16 Aug 2022 13:40:13 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37024 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S235633AbiHPRkJ (ORCPT ); Tue, 16 Aug 2022 13:40:09 -0400 Received: from mail-pl1-x630.google.com (mail-pl1-x630.google.com [IPv6:2607:f8b0:4864:20::630]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 28C197F104 for ; Tue, 16 Aug 2022 10:40:07 -0700 (PDT) Received: by mail-pl1-x630.google.com with SMTP id x23so9847577pll.7 for ; Tue, 16 Aug 2022 10:40:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=baylibre-com.20210112.gappssmtp.com; s=20210112; h=mime-version:message-id:date:references:in-reply-to:subject:cc:to :from:from:to:cc; bh=hIMXk1lCy7PeMgMus9bPUNIc2yzEqIefq4WSi+UIz3g=; b=gU23TNm472yJs3AYqGyYKrwfLS2f6Nk7Rj9rKopRrOtj2OZaZeYJXPuj9+bsEV3Ckg IWXMzfRX2+cdXvkbjuffEQmwKQi84FsiTAgZXzqMkHWQ5vy1oB/xyjdzLGJRz6LY+5oS oEPLku9+93HGey8m6M0RubpDyeoXv4UkEtQHKfNyVsav73ti+8JXsUSJSkNXTLo6ZBbd 6Z7SZTO79smvNijNR6LLZgPbrXD38xjyjB6GtteYjC4b2IYj2x0+qmQqhUbY3v84AkSv 8oW4VxasJ+xgnIteVFMJfZlPL1M/oZ/is244hdD3vQcW2IrVd3eImVjnzUnifWvRYUgE rWcw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=mime-version:message-id:date:references:in-reply-to:subject:cc:to :from:x-gm-message-state:from:to:cc; bh=hIMXk1lCy7PeMgMus9bPUNIc2yzEqIefq4WSi+UIz3g=; b=u2OD4ldCK86eLZA7b/mAno3TEiNW31tY+nvR+qcDxU2LOtbEcqJjcjUzuU+j3twU0D vt1aA+cqwCkBu6Eus5wJUY21Tykx/uKJI7vXyrMB9K1CAfUG7XeN2CrtBgz9erLa4fCu D4bIqj8kzs3Jzb94bzaADcD5pRq3nh8/M3mFCoA7HLnevCIJhU8SJ3VZFlJggHFAhlwr fjPvFhjTGXllERHxUjiVuau5JeFTBPYJkIP/VItrOFuCOHGsRT3idS1H3Np3I8ZeP9A3 PIgNFJiXZx9WYHpURWvs0zk4DowbCzK7XuPlIwpI5JNWTxBPYfHXcWK2sBxjGMJS7uK1 1pLA== X-Gm-Message-State: ACgBeo2xg7D2O26QvOf8db6PUAjTg3T8MtuR6VUak+oAaAWTmw5/UVoC nT8nFPO6az21KHQu4DAlzPdpQQ== X-Google-Smtp-Source: AA6agR52J8m2xodPayu3JfjmxNMO+0/0nJn8LACM9hVk8SrKFlqPoYwm4lTP+KDm6rI3hZkyoFEigg== X-Received: by 2002:a17:90b:3849:b0:1f4:89bb:14dc with SMTP id nl9-20020a17090b384900b001f489bb14dcmr25184319pjb.144.1660671606634; Tue, 16 Aug 2022 10:40:06 -0700 (PDT) Received: from localhost ([76.146.1.42]) by smtp.gmail.com with ESMTPSA id t12-20020a170902dccc00b0016d4f05eb95sm9279904pll.272.2022.08.16.10.40.06 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 16 Aug 2022 10:40:06 -0700 (PDT) From: Kevin Hilman To: Rob Herring Cc: Frank Rowand , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, =?utf-8?Q?P=C3=A9ter?= Ujfalusi , Matthias Brugger , linux-omap@vger.kernel.org Subject: Re: [PATCH] of: irq: Export of_msi_get_domain In-Reply-To: References: <20220812174420.2706827-1-khilman@baylibre.com> Date: Tue, 16 Aug 2022 10:40:05 -0700 Message-ID: <7hh72cw0i2.fsf@baylibre.com> MIME-Version: 1.0 Content-Type: text/plain Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Rob Herring writes: > On Fri, Aug 12, 2022 at 11:44 AM Kevin Hilman wrote: >> >> From: Matthias Brugger >> >> Export of_mis_get_domain to enable it for users from outside. > > typo > >> >> Signed-off-by: Matthias Brugger >> Acked-by: Rob Herring >> Signed-off-by: Peter Ujfalusi >> Link: https://lore.kernel.org/r/20200122104723.16955-1-peter.ujfalusi@ti.com >> Signed-off-by: Kevin Hilman >> --- >> Peter tried to resurrect this in 2020 (c.f. Link tag in log) but it >> didn't work. Here's one more attempt. I need this enable building >> some TI DMA drivers as modules. > > Then apply this with that enabling. I've already acked it (which keeps > it out of my queue, so drop that if you want to ensure I see it). OK. I assumed you'd want to take this through your tree, but if you're OK with it getting merged with the series using it, I'll do that. Thanks, Kevin