diff options
Diffstat (limited to 'linux-core')
| -rw-r--r-- | linux-core/radeon_gem.c | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-core/radeon_gem.c b/linux-core/radeon_gem.c index 5e2ad98b..5ecd8c55 100644 --- a/linux-core/radeon_gem.c +++ b/linux-core/radeon_gem.c @@ -585,6 +585,9 @@ void radeon_vram_setup(struct drm_device *dev)  	if (accessible > bar_size)  		accessible = bar_size; +	if (accessible > vram) +		accessible = vram; +  	DRM_INFO("Detected VRAM RAM=%dK, accessible=%uK, BAR=%uK\n",  		 vram, accessible, bar_size);  | 
