From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 C136234BA41; Sun, 12 Oct 2025 18:24:32 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760293472; cv=none; b=TLBj9rVxySirI/C39IDTKvimfIEn7q/ORZKMLb9il6v/f0g9KU3ZBn5ELhdWmi9swaHktfIzpudlj160f8z65XkXnld39HEdOPPrItSIF087JOMB8T5jx1Fhs0mz6d1PsDDMADijEO+ymdozPgvJzurybjEiFFF/3KM/aO319ZU= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1760293472; c=relaxed/simple; bh=jNQMPq5aHPw4UwMfE4/hvuN3ivslT2Wdd5P0OwmUHgM=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Kih3srttM+DQUHnSI2sFZ4rqC3Pdbr8rHUhvtG7f1fR1gbaqGfB5pN+CDu7+l/GcQXCv+iMdG6fsuAgnnJvqb1X7PPJ7DSRyge32r+m6PSYY9hOVwk3rvatZ6ciz61QgrMYu57F67t7cP2vX0a6sQr953mk2IEBTRscfp/eHWPI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=eM2ElECy; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="eM2ElECy" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DEE24C4CEF1; Sun, 12 Oct 2025 18:24:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1760293472; bh=jNQMPq5aHPw4UwMfE4/hvuN3ivslT2Wdd5P0OwmUHgM=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=eM2ElECya3orR0xr9EftJ7TQ9BqZoahTwmsb75SOFovYEf+NGbL+SOv5TLYP1+FRB cQQvCuihohSRFEHE3xmJBhExrUoXSDKxiVVqVDoS+1MDmsWZykLnwkCkOL54zz36Ts XLpgcVL/DhSQWd8wi2QEYtCF1TCRJmfaAanDEj+2q6yClkEtjKy2NSEP5AacYxGAUE R/nncmAyWTm5gEkmAntzn3XlmyNJG1MP1su8ont6UWlswqDkxMNb3lyLgyM5CMovQX vvCxRhHumAPLPixoIqeVvLyKw/TDh9EaJkggN9rdM/dMkvzyw2UTHNue5L4WxuWOc7 Sze3A7+bpUUIw== Date: Sun, 12 Oct 2025 11:23:02 -0700 From: Eric Biggers To: "Mario Limonciello (AMD)" Cc: David Airlie , Bjorn Helgaas , Alex Deucher , Christian =?iso-8859-1?Q?K=F6nig?= , Simona Vetter , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , "open list:DRM DRIVERS" , open list , "open list:PCI SUBSYSTEM" , Daniel Dadap Subject: Re: [PATCH v10 2/4] PCI/VGA: Replace vga_is_firmware_default() with a screen info check Message-ID: <20251012182302.GA3412@sol> References: <20250811162606.587759-1-superm1@kernel.org> <20250811162606.587759-3-superm1@kernel.org> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250811162606.587759-3-superm1@kernel.org> Hi, On Mon, Aug 11, 2025 at 11:26:04AM -0500, Mario Limonciello (AMD) wrote: > vga_is_firmware_default() checks firmware resources to find the owner > framebuffer resources to find the firmware PCI device. This is an > open coded implementation of screen_info_pci_dev(). Switch to using > screen_info_pci_dev() instead. > > Acked-by: Bjorn Helgaas > Suggested-by: Thomas Zimmermann > Signed-off-by: Mario Limonciello (AMD) I'm getting a black screen on boot on mainline, and it bisected to this commit. Reverting this commit fixed it. Please revert. - Eric