* [PATCH 0/6] gpu: convert to use new I2C API
@ 2020-03-26 21:09 Wolfram Sang
2020-03-26 21:10 ` [PATCH 5/6] drm/nouveau/therm: convert to use i2c_new_client_device() Wolfram Sang
2020-03-28 21:49 ` [PATCH 0/6] gpu: convert to use new I2C API Sam Ravnborg
0 siblings, 2 replies; 3+ messages in thread
From: Wolfram Sang @ 2020-03-26 21:09 UTC (permalink / raw)
To: linux-i2c; +Cc: Wolfram Sang, amd-gfx, dri-devel, linux-kernel, nouveau
We are deprecating calls which return NULL in favor of new variants which
return an ERR_PTR. Only build tested.
Wolfram Sang (6):
drm/amdgpu: convert to use i2c_new_client_device()
drm/gma500: convert to use i2c_new_client_device()
drm/i2c/sil164: convert to use i2c_new_client_device()
drm/i2c/tda998x: convert to use i2c_new_client_device()
drm/nouveau/therm: convert to use i2c_new_client_device()
drm/radeon: convert to use i2c_new_client_device()
drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c | 2 +-
drivers/gpu/drm/gma500/tc35876x-dsi-lvds.c | 8 ++++----
drivers/gpu/drm/i2c/sil164_drv.c | 7 +++++--
drivers/gpu/drm/i2c/tda998x_drv.c | 6 +++---
drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.c | 4 ++--
drivers/gpu/drm/radeon/radeon_atombios.c | 4 ++--
drivers/gpu/drm/radeon/radeon_combios.c | 4 ++--
7 files changed, 19 insertions(+), 16 deletions(-)
--
2.20.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 5/6] drm/nouveau/therm: convert to use i2c_new_client_device()
2020-03-26 21:09 [PATCH 0/6] gpu: convert to use new I2C API Wolfram Sang
@ 2020-03-26 21:10 ` Wolfram Sang
2020-03-28 21:49 ` [PATCH 0/6] gpu: convert to use new I2C API Sam Ravnborg
1 sibling, 0 replies; 3+ messages in thread
From: Wolfram Sang @ 2020-03-26 21:10 UTC (permalink / raw)
To: linux-i2c
Cc: Wolfram Sang, Ben Skeggs, David Airlie, Daniel Vetter, dri-devel,
nouveau, linux-kernel
Move away from the deprecated API and return the shiny new ERRPTR where
useful.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
---
drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.c b/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.c
index 03b355dabab3..abf3eda683f0 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.c
@@ -36,8 +36,8 @@ probe_monitoring_device(struct nvkm_i2c_bus *bus,
request_module("%s%s", I2C_MODULE_PREFIX, info->type);
- client = i2c_new_device(&bus->i2c, info);
- if (!client)
+ client = i2c_new_client_device(&bus->i2c, info);
+ if (IS_ERR(client))
return false;
if (!client->dev.driver ||
--
2.20.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 0/6] gpu: convert to use new I2C API
2020-03-26 21:09 [PATCH 0/6] gpu: convert to use new I2C API Wolfram Sang
2020-03-26 21:10 ` [PATCH 5/6] drm/nouveau/therm: convert to use i2c_new_client_device() Wolfram Sang
@ 2020-03-28 21:49 ` Sam Ravnborg
1 sibling, 0 replies; 3+ messages in thread
From: Sam Ravnborg @ 2020-03-28 21:49 UTC (permalink / raw)
To: Wolfram Sang; +Cc: linux-i2c, nouveau, dri-devel, amd-gfx, linux-kernel
On Thu, Mar 26, 2020 at 10:09:58PM +0100, Wolfram Sang wrote:
> We are deprecating calls which return NULL in favor of new variants which
> return an ERR_PTR. Only build tested.
>
>
> Wolfram Sang (6):
> drm/amdgpu: convert to use i2c_new_client_device()
> drm/gma500: convert to use i2c_new_client_device()
> drm/i2c/sil164: convert to use i2c_new_client_device()
> drm/i2c/tda998x: convert to use i2c_new_client_device()
> drm/nouveau/therm: convert to use i2c_new_client_device()
> drm/radeon: convert to use i2c_new_client_device()
With the ack from Alex I went ahead and applied the patches to
drm-misc-next.
Sam
>
> drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c | 2 +-
> drivers/gpu/drm/gma500/tc35876x-dsi-lvds.c | 8 ++++----
> drivers/gpu/drm/i2c/sil164_drv.c | 7 +++++--
> drivers/gpu/drm/i2c/tda998x_drv.c | 6 +++---
> drivers/gpu/drm/nouveau/nvkm/subdev/therm/ic.c | 4 ++--
> drivers/gpu/drm/radeon/radeon_atombios.c | 4 ++--
> drivers/gpu/drm/radeon/radeon_combios.c | 4 ++--
> 7 files changed, 19 insertions(+), 16 deletions(-)
>
> --
> 2.20.1
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-03-28 21:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-26 21:09 [PATCH 0/6] gpu: convert to use new I2C API Wolfram Sang
2020-03-26 21:10 ` [PATCH 5/6] drm/nouveau/therm: convert to use i2c_new_client_device() Wolfram Sang
2020-03-28 21:49 ` [PATCH 0/6] gpu: convert to use new I2C API Sam Ravnborg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox