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

Commit e7b26d12 authored by Wolfram Sang's avatar Wolfram Sang Committed by Alex Deucher
Browse files

gpu: drm: amd: amdgpu: amdgpu_i2c: don't print error when adding adapter fails



The core will do this for us now.

Signed-off-by: default avatarWolfram Sang <wsa-dev@sang-engineering.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent e2b84e4b
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
@@ -186,10 +186,8 @@ struct amdgpu_i2c_chan *amdgpu_i2c_create(struct drm_device *dev,
			 "AMDGPU i2c hw bus %s", name);
			 "AMDGPU i2c hw bus %s", name);
		i2c->adapter.algo = &amdgpu_atombios_i2c_algo;
		i2c->adapter.algo = &amdgpu_atombios_i2c_algo;
		ret = i2c_add_adapter(&i2c->adapter);
		ret = i2c_add_adapter(&i2c->adapter);
		if (ret) {
		if (ret)
			DRM_ERROR("Failed to register hw i2c %s\n", name);
			goto out_free;
			goto out_free;
		}
	} else {
	} else {
		/* set the amdgpu bit adapter */
		/* set the amdgpu bit adapter */
		snprintf(i2c->adapter.name, sizeof(i2c->adapter.name),
		snprintf(i2c->adapter.name, sizeof(i2c->adapter.name),