Hi Antonino, kernel test robot noticed the following build errors:
[auto build test ERROR on 7c626ce4bae1ac14f60076d00eafe71af30450ba] url: https://github.com/intel-lab-lkp/linux/commits/Antonino-Maniscalco/drm-msm-Fix-bv_fence-being-used-as-bv_rptr/20240816-023442 base: 7c626ce4bae1ac14f60076d00eafe71af30450ba patch link: https://lore.kernel.org/r/20240815-preemption-a750-t-v1-4-7bda26c34037%40gmail.com patch subject: [PATCH 4/7] drm/msm/A6xx: Implement preemption for A7XX targets config: x86_64-buildonly-randconfig-001-20240818 (https://download.01.org/0day-ci/archive/20240818/202408180848.cwzpm85g-...@intel.com/config) compiler: clang version 18.1.5 (https://github.com/llvm/llvm-project 617a15a9eac96088ae5e9134248d8236e34b91b1) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240818/202408180848.cwzpm85g-...@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <l...@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202408180848.cwzpm85g-...@intel.com/ All errors (new ones prefixed by >>): >> drivers/gpu/drm/msm/adreno/a6xx_preempt.c:49:17: error: unused variable >> 'cur_wptr' [-Werror,-Wunused-variable] 49 | uint32_t wptr, cur_wptr; | ^~~~~~~~ 1 error generated. vim +/cur_wptr +49 drivers/gpu/drm/msm/adreno/a6xx_preempt.c 44 45 /* Write the most recent wptr for the given ring into the hardware */ 46 static inline void update_wptr(struct msm_gpu *gpu, struct msm_ringbuffer *ring) 47 { 48 unsigned long flags; > 49 uint32_t wptr, cur_wptr; 50 51 if (!ring) 52 return; 53 54 spin_lock_irqsave(&ring->preempt_lock, flags); 55 56 if (ring->skip_inline_wptr) { 57 wptr = get_wptr(ring); 58 59 gpu_write(gpu, REG_A6XX_CP_RB_WPTR, wptr); 60 61 ring->skip_inline_wptr = false; 62 } 63 64 spin_unlock_irqrestore(&ring->preempt_lock, flags); 65 } 66 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki