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 gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (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 1DF17C5478C for ; Mon, 4 Mar 2024 13:18:02 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5FF99112142; Mon, 4 Mar 2024 13:18:01 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="ZKGcdBwF"; dkim-atps=neutral Received: from madrid.collaboradmins.com (madrid.collaboradmins.com [46.235.227.194]) by gabe.freedesktop.org (Postfix) with ESMTPS id D06C5112142 for ; Mon, 4 Mar 2024 13:17:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1709558278; bh=1h8aiX5VnqQawt4bSP+D9PCxzdPI4JLFpt76nfcwGOA=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=ZKGcdBwFDGncoD1//gsG88oG+Rmi5MwVwIeHkYz008pNNYZc9jZnsjDxK5vY9soNg z1U6WAneqS17hN5+4x1P4ms+I+WT4/7x/xeoeehGFSlhZWkJdDuepGMSc4RKUSeszB 92WxvH2Mgp2sKQ3jc0EsbuNxypYXC70DKq6kTpkwdmzRG6CoRCBx1bU495GLMHHAC0 5fxFk9RmK7MvI65T6Btna+vf359kewOXq1JH8GlzM9bMpiovzIPcsgIrEoe1nIMZHV IKaQ79x5GXvUL9lsmXfmM3pkHXO4dFgsDYPUFQg2bwQehzUyynAW9JiUoZ2QR4anWM kJ094EyL8dI4Q== Received: from localhost (cola.collaboradmins.com [195.201.22.229]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: bbrezillon) by madrid.collaboradmins.com (Postfix) with ESMTPSA id 171173780629; Mon, 4 Mar 2024 13:17:58 +0000 (UTC) Date: Mon, 4 Mar 2024 14:17:56 +0100 From: Boris Brezillon To: Liviu Dudau Cc: Steven Price , dri-devel@lists.freedesktop.org, kernel@collabora.com, kernel test robot Subject: Re: [PATCH 2/3] drm/panthor: Explicitly include page.h for the {virt,__phys)_to_pfn() defs Message-ID: <20240304141756.25e32f54@collabora.com> In-Reply-To: References: <20240304090812.3941084-1-boris.brezillon@collabora.com> <20240304090812.3941084-3-boris.brezillon@collabora.com> Organization: Collabora X-Mailer: Claws Mail 4.2.0 (GTK 3.24.38; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Mon, 4 Mar 2024 11:16:48 +0000 Liviu Dudau wrote: > On Mon, Mar 04, 2024 at 10:08:11AM +0100, Boris Brezillon wrote: > > Something on arm[64] must be including , but things fail > > to compile on sparc64. Make sure this header is included explicitly > > so this driver can be compile-tested on all supported architectures. > > Is compilation on sparc64 possible because of 'depends on COMPILE_TEST'? Yes. > Otherwise it doesn't make sense to try to build this for any arch other > than arm[64]. > > Regardless, patch looks harmless, so > > Reviewed-by: Liviu Dudau > > Best regards, > Liviu > > > > > Reported-by: kernel test robot > > Closes: https://lore.kernel.org/oe-kbuild-all/202403031142.Vl4pW7X6-lkp@intel.com/ > > Signed-off-by: Boris Brezillon > > --- > > drivers/gpu/drm/panthor/panthor_device.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/drivers/gpu/drm/panthor/panthor_device.c b/drivers/gpu/drm/panthor/panthor_device.c > > index bfe8da4a6e4c..68e467ee458a 100644 > > --- a/drivers/gpu/drm/panthor/panthor_device.c > > +++ b/drivers/gpu/drm/panthor/panthor_device.c > > @@ -3,6 +3,8 @@ > > /* Copyright 2019 Linaro, Ltd, Rob Herring */ > > /* Copyright 2023 Collabora ltd. */ > > > > +#include > > + > > #include > > #include > > #include > > -- > > 2.43.0 > > >