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 BCFF2C77B6E for ; Wed, 5 Apr 2023 14:59:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S238442AbjDEO7r convert rfc822-to-8bit (ORCPT ); Wed, 5 Apr 2023 10:59:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:45190 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229879AbjDEO7p (ORCPT ); Wed, 5 Apr 2023 10:59:45 -0400 Received: from mail-ed1-f52.google.com (mail-ed1-f52.google.com [209.85.208.52]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 24CB61FF7; Wed, 5 Apr 2023 07:59:44 -0700 (PDT) Received: by mail-ed1-f52.google.com with SMTP id t10so141660331edd.12; Wed, 05 Apr 2023 07:59:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1680706782; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=PIwPFSHZcZTOVeokZaz942Rb6z1/6U2kl/cQF2ZCigE=; b=5bS2HCsY35fAE37qkFgV8uZnvsrcEf1jzxU2tn9nGp+zJIh1LIW1m4M/jwBCSSHBKV su7HMqesWIDztCB5kTGfAclcRu0hyZEJwprGFpfwHnIbKdMlPl+P2WG3afpLcu/BnCa/ RXhm+ey2ysrTga10wgSbYSzmidWdMEh9UiwknM4ttqv43oTOrru09szjeDKMHitJ6VuN 5wYRL4uuddVSHvuDBHW07f8yNKknSYzlOh2O8XzOaAYR6i3YLcNeAI7LaEpuw0qfdYsJ xkKolKpiQCp3F3YgvH4KUIAu49iFWv1lpDNRg8LGlNM/vbw94as5yov4R2aW/rJkoFxG 3S2Q== X-Gm-Message-State: AAQBX9cYyPRrgMnrA+1LcF29aj4alA9+jUc7zJPTNx1R3K5nrgojX61v mboDFX7NhwuFnwfKS0ivL4WBXemNFCWTpv3w2/4= X-Google-Smtp-Source: AKy350a4pvA7bHYbF3tn7kupoBqb+rMIx2cjRVXOEUqiuhWhUrNUA75BhjkFXftrDZzlVLFANv2u1dboAZf4nW2MZkk= X-Received: by 2002:a17:907:3f92:b0:934:b5d6:14d0 with SMTP id hr18-20020a1709073f9200b00934b5d614d0mr1986841ejc.2.1680706782565; Wed, 05 Apr 2023 07:59:42 -0700 (PDT) MIME-Version: 1.0 References: <20230329-acpi-header-cleanup-v1-0-8dc5cd3c610e@kernel.org> <20230329-acpi-header-cleanup-v1-5-8dc5cd3c610e@kernel.org> In-Reply-To: <20230329-acpi-header-cleanup-v1-5-8dc5cd3c610e@kernel.org> From: "Rafael J. Wysocki" Date: Wed, 5 Apr 2023 16:59:31 +0200 Message-ID: Subject: Re: [PATCH 5/5] ACPI: Replace irqdomain.h include with struct declarations To: Rob Herring Cc: "Rafael J. Wysocki" , Len Brown , Marcelo Schmitt , Lars-Peter Clausen , Michael Hennerich , Jonathan Cameron , Greg Kroah-Hartman , Johannes Berg , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Jiri Slaby , Thierry Reding , Jonathan Hunter , Marc Zyngier , linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org, linux-staging@lists.linux.dev, linux-wireless@vger.kernel.org, netdev@vger.kernel.org, linux-serial@vger.kernel.org, linux-tegra@vger.kernel.org, linux-acpi@vger.kernel.org, devicetree@vger.kernel.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Hi Rob, On Wed, Mar 29, 2023 at 11:21 PM Rob Herring wrote: > > linux/acpi.h includes irqdomain.h which includes of.h. Break the include > chain by replacing the irqdomain include with forward declarations for > struct irq_domain and irq_domain_ops which is sufficient for acpi.h. > > Cc: Marc Zyngier > Signed-off-by: Rob Herring > --- > include/linux/acpi.h | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/include/linux/acpi.h b/include/linux/acpi.h > index efff750f326d..169c17c0b0dc 100644 > --- a/include/linux/acpi.h > +++ b/include/linux/acpi.h > @@ -10,12 +10,14 @@ > > #include > #include /* for struct resource */ > -#include > #include > #include > #include > #include > > +struct irq_domain; > +struct irq_domain_ops; > + > #ifndef _LINUX > #define _LINUX > #endif > > -- This causes build issues in linux-next, so I've dropped the series. I will be happy to pick it up again when the build issues are addressed, though. Thanks!