search for: method_ret

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

2017 Jul 12
1
[PATCH] drm/nouveau: honor return type of nvif_mthd, trivial
...eau/nouveau_display.c +++ b/drivers/gpu/drm/nouveau/nouveau_display.c @@ -113,10 +113,11 @@ nouveau_display_scanoutpos_head(struct drm_crtc *crtc, int *vpos, int *hpos, struct drm_vblank_crtc *vblank = &crtc->dev->vblank[drm_crtc_index(crtc)]; int retry = 20; bool ret = false; + int method_ret; do { - ret = nvif_mthd(&disp->disp, 0, &args, sizeof(args)); - if (ret != 0) + int method_ret = nvif_mthd(&disp->disp, 0, &args, sizeof(args)); + if (method_ret != 0) return false; if (args.scan.vline) { -- 2.13.2