From patchwork Thu Nov 10 00:10:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Rothwell X-Patchwork-Id: 13038179 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 84827C433FE for ; Thu, 10 Nov 2022 00:10:45 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B573E10E631; Thu, 10 Nov 2022 00:10:44 +0000 (UTC) X-Greylist: delayed 961 seconds by postgrey-1.36 at gabe; Thu, 10 Nov 2022 00:10:39 UTC Received: from gandalf.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by gabe.freedesktop.org (Postfix) with ESMTPS id F147E10E631; Thu, 10 Nov 2022 00:10:39 +0000 (UTC) Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 4N72Kp0Kyvz4xGT; Thu, 10 Nov 2022 11:10:38 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canb.auug.org.au; s=201702; t=1668039038; bh=7NJVAvlEwmwSk1lEugHbvaQ3Djwk5pg2l77rzitW5zU=; h=Date:From:To:Cc:Subject:From; b=HbzjsAiTjm/cDpadZMmcAhg5e5Op/A/JZ6p+JTAv8DnAAZsuzx/0TWHqN7b9Q9sWq rxuAmcaABF3Syj9SyrIsLgEiZnHoshquZ4RkTrGdGanv8XT+pZ3hVrP5VWW2nmihku s7gT7B6MtOdrFtOQS9if4QhZIt/puLJbSYh8FNjXxof7uixLLlGtYkORLpJNt2LMPC mEHROv3V5PutaXXNQ40LxWLzN1ql46WmCkrx9hveBwotHpJMnt7hmVWzBt6QvnK1Vf ucGC3A7LU1xrgn4qwPWtMEHnHaRPPoebCjzoLr6viODVtgwcRVCURWYWrDQyZKZ3Mg EJkU20XZvbJ6Q== Date: Thu, 10 Nov 2022 11:10:36 +1100 From: Stephen Rothwell To: Daniel Vetter , Dave Airlie Message-ID: <20221110111036.63cb67d1@canb.auug.org.au> MIME-Version: 1.0 Subject: [Intel-gfx] linux-next: build failure after merge of the drm-misc tree X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Intel Graphics , Linux Kernel Mailing List , DRI , Linux Next Mailing List , Ben Skeggs , Thomas Zimmermann Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Hi all, After merging the drm-misc tree, today's linux-next build (arm multi_v7_defconfig) failed like this: drivers/gpu/drm/nouveau/nouveau_drm.c: In function 'nouveau_drm_probe': drivers/gpu/drm/nouveau/nouveau_drm.c:797:17: error: implicit declaration of function 'drm_fbdev_generic_setup' [-Werror=implicit-function-declaration] 797 | drm_fbdev_generic_setup(drm_dev, 8); | ^~~~~~~~~~~~~~~~~~~~~~~ Caused by commit 8ab59da26bc0 ("drm/fb-helper: Move generic fbdev emulation into separate source file") interacting with commit 4a16dd9d18a0 ("drm/nouveau/kms: switch to drm fbdev helpers") from the drm tree. I have applied the following merge fix patch for today. From: Stephen Rothwell Date: Thu, 10 Nov 2022 11:05:52 +1100 Subject: [PATCH] drm-misc: fix up for "drm/fb-helper: Move generic fbdev emulation into separate source file" Signed-off-by: Stephen Rothwell --- drivers/gpu/drm/nouveau/nouveau_drm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c index a19f18b251f3..80f154b6adab 100644 --- a/drivers/gpu/drm/nouveau/nouveau_drm.c +++ b/drivers/gpu/drm/nouveau/nouveau_drm.c @@ -34,6 +34,7 @@ #include #include #include +#include #include #include #include