Skip to content

Commit

Permalink
Merge pull request #1437 from Kamalheib/dma
Browse files Browse the repository at this point in the history
pyverbs: Fix build failure
  • Loading branch information
rleon committed Mar 10, 2024
2 parents 5155f7f + 4d0e1a4 commit 710aa55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyverbs/dmabuf_alloc.c
Expand Up @@ -43,7 +43,7 @@ static int i915_alloc(struct drm *drm, uint64_t size, uint32_t *handle, int gtt)
return 0;
}

static int amdgpu_alloc(struct drm *drm, size_t size, uint32_t *handle, int gtt)
static int amdgpu_alloc(struct drm *drm, uint64_t size, uint32_t *handle, int gtt)
{
union drm_amdgpu_gem_create gem_create = {{}};
int err;
Expand Down

0 comments on commit 710aa55

Please sign in to comment.