search for: nv50_wndw_get_scanout_buff

Displaying 1 result from an estimated 1 matches for "nv50_wndw_get_scanout_buff".

2024 May 24
0
[PATCH 5/5] drm/nouveau: Add drm_panic support for nv50+
...ote: in included file (through include/linux/timer.h, include/linux/workqueue.h, drivers/gpu/drm/nouveau/dispnv50/disp.h, ...): include/linux/list.h:83:21: sparse: sparse: self-comparison always evaluates to true vim +675 drivers/gpu/drm/nouveau/dispnv50/wndw.c 652 653 static int 654 nv50_wndw_get_scanout_buffer(struct drm_plane *plane, struct drm_scanout_buffer *sb) 655 { 656 struct drm_framebuffer *fb; 657 struct nouveau_bo *nvbo; 658 659 if (!plane->state || !plane->state->fb) 660 return -EINVAL; 661 662 fb = plane->state->fb; 663 nvbo = nouveau_gem_o...