Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i915: avoid register_fictitious_range on meteorlake #324

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion drivers/gpu/drm/i915/display/intel_fbdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,9 @@ static int intelfb_create(struct drm_fb_helper *helper,
* values passed to register_fictitious_range() below are unavailable
* from a generic structure set by both drivers.
*/
register_fictitious_range(info->aperture_base, info->aperture_size);
if (info->aperture_base) {
register_fictitious_range(info->aperture_base, info->aperture_size);
}
#endif

for_i915_gem_ww(&ww, ret, false) {
Expand Down