From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.14]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9A31683A17 for ; Thu, 7 Mar 2024 10:12:51 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=198.175.65.14 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709806373; cv=none; b=ppS9KpROPN2ef5Ig88Pc9qdmheZ/bcQiBGPeQ+nSBZ7JE3SO+eHgnEo1P9S0NkhAj0xCNgPe2QX3OG4emCZ3Cj6AkCxrrlDKitSLtNSS5X6bDgTnqMHToYCD4ViID6TGi++UrZU2gUGz7WpH5EXuuEaaCnBCU89f1iLL18C1foo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709806373; c=relaxed/simple; bh=f6wBBysqfQOEtG+YY8fSdpRVawUGnNfgV70+vyePSr0=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=fbt+AO2jKy0dG6SY861NPEY3N4TJjnTSzek9K/WOWKttLoP0HVRV31PRCNEdM4xF0GRKi3hc5eYEA5HLuh4nJtieV/QBvG1WwRAmI8+W416nw98nOCQQInpCi2XuWirHC8YvkvEjTa/NJUhrxs7ds2l/u/svpqauiHwgcWyLD/4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=intel.com; spf=pass smtp.mailfrom=intel.com; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b=OahBmm1s; arc=none smtp.client-ip=198.175.65.14 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=intel.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=intel.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=intel.com header.i=@intel.com header.b="OahBmm1s" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1709806372; x=1741342372; h=from:to:cc:subject:in-reply-to:references:date: message-id:mime-version:content-transfer-encoding; bh=f6wBBysqfQOEtG+YY8fSdpRVawUGnNfgV70+vyePSr0=; b=OahBmm1s9ovmWIYwjdEQgcVbyV//yTc63m9hRePuNIGZapzpFNW5QejJ ZbZfeX3ZadFISX33fHUMbp5rCGeJIPERQ6eI/9BfhNOSSn9TGwEs3xcoR 7eJSpKJdcnM1Ej5adnUMMGaHFcWzb0Jhr1tloYuGCpCNt3EoRDmMxnt95 RMWtmdqg6fLGy8AsTI996kfWF86s2V74EGXNwWzeOt+5kbsiEjZUVC9t0 YSKJSg5yuqFdyXxBPLDF/oFgONpRDPXbqvqltIWUjajvKcSsKpfhSqxJV KvL/R8MgRfo5eDsKLclYlMUUyDwg6UATuLNBlIWQelErv63W27dK42cu/ A==; X-IronPort-AV: E=McAfee;i="6600,9927,11005"; a="8285946" X-IronPort-AV: E=Sophos;i="6.06,211,1705392000"; d="scan'208";a="8285946" Received: from orviesa009.jf.intel.com ([10.64.159.149]) by orvoesa106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Mar 2024 02:12:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.06,211,1705392000"; d="scan'208";a="10134733" Received: from tcavalax-mobl.ger.corp.intel.com (HELO localhost) ([10.252.33.241]) by orviesa009-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 07 Mar 2024 02:12:48 -0800 From: Jani Nikula To: Geert Uytterhoeven Cc: linux-m68k@lists.linux-m68k.org, dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: Re: [PATCH] m68k: pgtable: Add missing #include In-Reply-To: Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo References: Date: Thu, 07 Mar 2024 12:12:45 +0200 Message-ID: <8734t2xsde.fsf@intel.com> Precedence: bulk X-Mailing-List: linux-m68k@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable On Thu, 07 Mar 2024, Geert Uytterhoeven wrote: > When just including : > > include/asm-generic/pgtable-nop4d.h:9:18: error: unknown type name = =E2=80=98pgd_t=E2=80=99 > 9 | typedef struct { pgd_t pgd; } p4d_t; > | ^~~~~ > > Make self-contained by including . > > Reported-by: Jani Nikula > Closes: https://lore.kernel.org/r/878r2uxwha.fsf@intel.com > Signed-off-by: Geert Uytterhoeven > --- > Jani: Feel free to pick this up as a dependency. > Else I will queue this in the m68k tree for v6.10. Thanks, I'd like to pick this up as a dependency, so I can proceed with my series. It'll also be queued for v6.10 via the drm subsystem. BR, Jani. > > arch/m68k/include/asm/pgtable.h | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/arch/m68k/include/asm/pgtable.h b/arch/m68k/include/asm/pgta= ble.h > index 27525c6a12fd0c7f..49fcfd7348600594 100644 > --- a/arch/m68k/include/asm/pgtable.h > +++ b/arch/m68k/include/asm/pgtable.h > @@ -2,6 +2,8 @@ > #ifndef __M68K_PGTABLE_H > #define __M68K_PGTABLE_H >=20=20 > +#include > + > #ifdef __uClinux__ > #include > #else --=20 Jani Nikula, Intel