Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eacf3e14 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/amdgpu: make wb 256bit function names consistent



Use a lower case b to be consistent with the other wb functions.

Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 51ac7eec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1132,7 +1132,7 @@ struct amdgpu_wb {
int amdgpu_wb_get(struct amdgpu_device *adev, u32 *wb);
void amdgpu_wb_free(struct amdgpu_device *adev, u32 wb);
int amdgpu_wb_get_64bit(struct amdgpu_device *adev, u32 *wb);
int amdgpu_wb_get_256Bit(struct amdgpu_device *adev, u32 *wb);
int amdgpu_wb_get_256bit(struct amdgpu_device *adev, u32 *wb);
void amdgpu_wb_free_64bit(struct amdgpu_device *adev, u32 wb);
void amdgpu_wb_free_256bit(struct amdgpu_device *adev, u32 wb);

+1 −1
Original line number Diff line number Diff line
@@ -567,7 +567,7 @@ int amdgpu_wb_get_64bit(struct amdgpu_device *adev, u32 *wb)
	}
}

int amdgpu_wb_get_256Bit(struct amdgpu_device *adev, u32 *wb)
int amdgpu_wb_get_256bit(struct amdgpu_device *adev, u32 *wb)
{
	int i = 0;
	unsigned long offset = bitmap_find_next_zero_area_off(adev->wb.used,
+1 −1
Original line number Diff line number Diff line
@@ -213,7 +213,7 @@ int amdgpu_ring_init(struct amdgpu_device *adev, struct amdgpu_ring *ring,
	}

	if (amdgpu_sriov_vf(adev) && ring->funcs->type == AMDGPU_RING_TYPE_GFX) {
		r = amdgpu_wb_get_256Bit(adev, &ring->fence_offs);
		r = amdgpu_wb_get_256bit(adev, &ring->fence_offs);
		if (r) {
			dev_err(adev->dev, "(%d) ring fence_offs wb alloc failed\n", r);
			return r;