static int __qaic_execute_bo_ioctl(struct drm_device *dev, void *data, struct drm_file *file_priv,
                                   bool is_partial)
 {
-       struct qaic_partial_execute_entry *pexec;
        struct qaic_execute *args = data;
        struct qaic_execute_entry *exec;
        struct dma_bridge_chan *dbc;
 
        received_ts = ktime_get_ns();
 
-       size = is_partial ? sizeof(*pexec) : sizeof(*exec);
+       size = is_partial ? sizeof(struct qaic_partial_execute_entry) : sizeof(*exec);
        n = (unsigned long)size * args->hdr.count;
        if (args->hdr.count == 0 || n / args->hdr.count != size)
                return -EINVAL;
        user_data = u64_to_user_ptr(args->data);
 
        exec = kcalloc(args->hdr.count, size, GFP_KERNEL);
-       pexec = (struct qaic_partial_execute_entry *)exec;
        if (!exec)
                return -ENOMEM;