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

Commit b7e2e9f7 authored by jimqu's avatar jimqu Committed by Alex Deucher
Browse files

drm/amdgpu: correct coding style

parent d347ce66
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -210,11 +210,11 @@ static void vce_v3_0_set_vce_sw_clock_gating(struct amdgpu_device *adev,
static int vce_v3_0_firmware_loaded(struct amdgpu_device *adev)
{
	int i, j;
	uint32_t status = 0;

	for (i = 0; i < 10; ++i) {
		for (j = 0; j < 100; ++j) {
			status = RREG32(mmVCE_STATUS);
			uint32_t status = RREG32(mmVCE_STATUS);

			if (status & VCE_STATUS_VCPU_REPORT_FW_LOADED_MASK)
				return 0;
			mdelay(10);