]> www.infradead.org Git - users/hch/misc.git/commitdiff
drm/amdgpu: drop drm_firmware_drivers_only()
authorAlex Deucher <alexander.deucher@amd.com>
Thu, 13 Mar 2025 20:57:50 +0000 (16:57 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 18 Mar 2025 18:03:37 +0000 (14:03 -0400)
There are a number of systems and cloud providers out there
that have nomodeset hardcoded in their kernel parameters
to block nouveau for the nvidia driver.  This prevents the
amdgpu driver from loading. Unfortunately the end user cannot
easily change this.  The preferred way to block modules from
loading is to use modprobe.blacklist=<driver>.  That is what
providers should be using to block specific drivers.

Drop the check to allow the driver to load even when nomodeset
is specified on the kernel command line.

Reviewed-by: Kent Russell <kent.russell@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c

index 653f2bc775306088aedd99b888fc07ccaa6ebd8e..1e77fdc9c7d12b66f885146689cd39f77ded5fb6 100644 (file)
@@ -2990,9 +2990,6 @@ static int __init amdgpu_init(void)
 {
        int r;
 
-       if (drm_firmware_drivers_only())
-               return -EINVAL;
-
        r = amdgpu_sync_init();
        if (r)
                goto error_sync;