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 2A307C433FE for ; Sun, 6 Feb 2022 21:28:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S240042AbiBFV2a (ORCPT ); Sun, 6 Feb 2022 16:28:30 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47316 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231356AbiBFV22 (ORCPT ); Sun, 6 Feb 2022 16:28:28 -0500 Received: from mx2.smtp.larsendata.com (mx2.smtp.larsendata.com [91.221.196.228]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0DAA7C06173B for ; Sun, 6 Feb 2022 13:28:26 -0800 (PST) Received: from mail01.mxhotel.dk (mail01.mxhotel.dk [91.221.196.236]) by mx2.smtp.larsendata.com (Halon) with ESMTPS id dc254daa-8793-11ec-ac19-0050568cd888; Sun, 06 Feb 2022 21:29:26 +0000 (UTC) Received: from ravnborg.org (80-162-45-141-cable.dk.customer.tdc.net [80.162.45.141]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: sam@ravnborg.org) by mail01.mxhotel.dk (Postfix) with ESMTPSA id 99971194B04; Sun, 6 Feb 2022 22:28:20 +0100 (CET) Date: Sun, 6 Feb 2022 22:28:17 +0100 X-Report-Abuse-To: abuse@mxhotel.dk From: Sam Ravnborg To: Tomohito Esaki Cc: dri-devel@lists.freedesktop.org, kernel test robot , Kevin Tang , David Airlie , Chunyan Zhang , linux-kernel@vger.kernel.org, Maxime Ripard , Baolin Wang , Orson Zhai , Andy Shevchenko , Laurent Pinchart Subject: Re: [PATCH] drm/sprd: remove allow_fb_modifiers setting Message-ID: References: <20220204023635.15496-1-etom@igel.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220204023635.15496-1-etom@igel.co.jp> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Tomohito, On Fri, Feb 04, 2022 at 11:36:35AM +0900, Tomohito Esaki wrote: > Remove allow_fb_modifiers setting in this driver. The allow_fb_modifiers > flag was removed. > > Signed-off-by: Tomohito Esaki > Fixes: 3d082157a242 ("drm: remove allow_fb_modifiers") > Reported-by: kernel test robot > --- > drivers/gpu/drm/sprd/sprd_drm.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/gpu/drm/sprd/sprd_drm.c b/drivers/gpu/drm/sprd/sprd_drm.c > index a077e2d4d721..54c851bccf5b 100644 > --- a/drivers/gpu/drm/sprd/sprd_drm.c > +++ b/drivers/gpu/drm/sprd/sprd_drm.c > @@ -43,7 +43,6 @@ static void sprd_drm_mode_config_init(struct drm_device *drm) > drm->mode_config.min_height = 0; > drm->mode_config.max_width = 8192; > drm->mode_config.max_height = 8192; > - drm->mode_config.allow_fb_modifiers = true; > > drm->mode_config.funcs = &sprd_drm_mode_config_funcs; > drm->mode_config.helper_private = &sprd_drm_mode_config_helper; Thanks, this partially fixed my arm build. Pushed to drm-misc-next and should appear in -next within some days. Sam