Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 68d30596 authored by Dave Airlie's avatar Dave Airlie
Browse files

drm/radeon: use aperture size not vram size for overlap tests



This fixes a problem where the wrong card conflicts with vesafb in my
x2 system.

Signed-off-by: default avatarDave Airlie <airlied@redhat.com>
parent 6f2f48a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -245,7 +245,7 @@ static int radeonfb_create(struct radeon_fbdev *rfbdev,
		goto out_unref;
	}
	info->apertures->ranges[0].base = rdev->ddev->mode_config.fb_base;
	info->apertures->ranges[0].size = rdev->mc.real_vram_size;
	info->apertures->ranges[0].size = rdev->mc.aper_size;

	info->fix.mmio_start = 0;
	info->fix.mmio_len = 0;