* [PATCH 0/6] gpu: convert to use new I2C API
@ 2020-03-26 21:09 Wolfram Sang
2020-03-26 21:09 ` [PATCH 1/6] drm/amdgpu: convert to use i2c_new_client_device() Wolfram Sang
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Wolfram Sang @ 2020-03-26 21:09 UTC (permalink / raw)
To: linux-i2c; +Cc: nouveau, Wolfram Sang, dri-devel, amd-gfx, linux-kernel
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
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH 1/6] drm/amdgpu: 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:09 ` Wolfram Sang 2020-03-26 21:10 ` [PATCH 6/6] drm/radeon: " Wolfram Sang 2020-03-28 21:49 ` [PATCH 0/6] gpu: convert to use new I2C API Sam Ravnborg 2 siblings, 0 replies; 9+ messages in thread From: Wolfram Sang @ 2020-03-26 21:09 UTC (permalink / raw) To: linux-i2c Cc: David (ChunMing) Zhou, David Airlie, linux-kernel, amd-gfx, Wolfram Sang, dri-devel, Daniel Vetter, Alex Deucher, Christian König Move away from the deprecated API. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> --- drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c index ba1bb95a3cf9..0e8018c9aa8e 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_dpm.c @@ -856,7 +856,7 @@ void amdgpu_add_thermal_controller(struct amdgpu_device *adev) const char *name = pp_lib_thermal_controller_names[controller->ucType]; info.addr = controller->ucI2cAddress >> 1; strlcpy(info.type, name, sizeof(info.type)); - i2c_new_device(&adev->pm.i2c_bus->adapter, &info); + i2c_new_client_device(&adev->pm.i2c_bus->adapter, &info); } } else { DRM_INFO("Unknown thermal controller type %d at 0x%02x %s fan control\n", -- 2.20.1 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 6/6] drm/radeon: 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:09 ` [PATCH 1/6] drm/amdgpu: convert to use i2c_new_client_device() Wolfram Sang @ 2020-03-26 21:10 ` Wolfram Sang 2020-03-27 14:25 ` Alex Deucher 2020-03-28 21:49 ` [PATCH 0/6] gpu: convert to use new I2C API Sam Ravnborg 2 siblings, 1 reply; 9+ messages in thread From: Wolfram Sang @ 2020-03-26 21:10 UTC (permalink / raw) To: linux-i2c Cc: David (ChunMing) Zhou, David Airlie, linux-kernel, amd-gfx, Wolfram Sang, dri-devel, Daniel Vetter, Alex Deucher, Christian König Move away from the deprecated API. Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> --- drivers/gpu/drm/radeon/radeon_atombios.c | 4 ++-- drivers/gpu/drm/radeon/radeon_combios.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c index 848ef68d9086..5d2591725189 100644 --- a/drivers/gpu/drm/radeon/radeon_atombios.c +++ b/drivers/gpu/drm/radeon/radeon_atombios.c @@ -2111,7 +2111,7 @@ static int radeon_atombios_parse_power_table_1_3(struct radeon_device *rdev) ucOverdriveThermalController]; info.addr = power_info->info.ucOverdriveControllerAddress >> 1; strlcpy(info.type, name, sizeof(info.type)); - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); } } num_modes = power_info->info.ucNumOfPowerModeEntries; @@ -2351,7 +2351,7 @@ static void radeon_atombios_add_pplib_thermal_controller(struct radeon_device *r const char *name = pp_lib_thermal_controller_names[controller->ucType]; info.addr = controller->ucI2cAddress >> 1; strlcpy(info.type, name, sizeof(info.type)); - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); } } else { DRM_INFO("Unknown thermal controller type %d at 0x%02x %s fan control\n", diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c index c3e49c973812..d3c04df7e75d 100644 --- a/drivers/gpu/drm/radeon/radeon_combios.c +++ b/drivers/gpu/drm/radeon/radeon_combios.c @@ -2704,7 +2704,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) const char *name = thermal_controller_names[thermal_controller]; info.addr = i2c_addr >> 1; strlcpy(info.type, name, sizeof(info.type)); - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); } } } else { @@ -2721,7 +2721,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) const char *name = "f75375"; info.addr = 0x28; strlcpy(info.type, name, sizeof(info.type)); - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); DRM_INFO("Possible %s thermal controller at 0x%02x\n", name, info.addr); } -- 2.20.1 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH 6/6] drm/radeon: convert to use i2c_new_client_device() 2020-03-26 21:10 ` [PATCH 6/6] drm/radeon: " Wolfram Sang @ 2020-03-27 14:25 ` Alex Deucher 2020-03-27 15:25 ` Sam Ravnborg 0 siblings, 1 reply; 9+ messages in thread From: Alex Deucher @ 2020-03-27 14:25 UTC (permalink / raw) To: Wolfram Sang Cc: amd-gfx list, David Airlie, LKML, Maling list - DRI developers, Linux I2C, Alex Deucher, Christian König On Thu, Mar 26, 2020 at 5:35 PM Wolfram Sang <wsa+renesas@sang-engineering.com> wrote: > > Move away from the deprecated API. > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> patches 1,6, are: Acked-by: Alex Deucher <alexander.deucher@amd.com> > --- > drivers/gpu/drm/radeon/radeon_atombios.c | 4 ++-- > drivers/gpu/drm/radeon/radeon_combios.c | 4 ++-- > 2 files changed, 4 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c > index 848ef68d9086..5d2591725189 100644 > --- a/drivers/gpu/drm/radeon/radeon_atombios.c > +++ b/drivers/gpu/drm/radeon/radeon_atombios.c > @@ -2111,7 +2111,7 @@ static int radeon_atombios_parse_power_table_1_3(struct radeon_device *rdev) > ucOverdriveThermalController]; > info.addr = power_info->info.ucOverdriveControllerAddress >> 1; > strlcpy(info.type, name, sizeof(info.type)); > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > } > } > num_modes = power_info->info.ucNumOfPowerModeEntries; > @@ -2351,7 +2351,7 @@ static void radeon_atombios_add_pplib_thermal_controller(struct radeon_device *r > const char *name = pp_lib_thermal_controller_names[controller->ucType]; > info.addr = controller->ucI2cAddress >> 1; > strlcpy(info.type, name, sizeof(info.type)); > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > } > } else { > DRM_INFO("Unknown thermal controller type %d at 0x%02x %s fan control\n", > diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c > index c3e49c973812..d3c04df7e75d 100644 > --- a/drivers/gpu/drm/radeon/radeon_combios.c > +++ b/drivers/gpu/drm/radeon/radeon_combios.c > @@ -2704,7 +2704,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) > const char *name = thermal_controller_names[thermal_controller]; > info.addr = i2c_addr >> 1; > strlcpy(info.type, name, sizeof(info.type)); > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > } > } > } else { > @@ -2721,7 +2721,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) > const char *name = "f75375"; > info.addr = 0x28; > strlcpy(info.type, name, sizeof(info.type)); > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > DRM_INFO("Possible %s thermal controller at 0x%02x\n", > name, info.addr); > } > -- > 2.20.1 > > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 6/6] drm/radeon: convert to use i2c_new_client_device() 2020-03-27 14:25 ` Alex Deucher @ 2020-03-27 15:25 ` Sam Ravnborg 2020-03-27 15:27 ` Alex Deucher 0 siblings, 1 reply; 9+ messages in thread From: Sam Ravnborg @ 2020-03-27 15:25 UTC (permalink / raw) To: Alex Deucher Cc: David Airlie, LKML, Maling list - DRI developers, Wolfram Sang, amd-gfx list, Alex Deucher, Christian König, Linux I2C On Fri, Mar 27, 2020 at 10:25:16AM -0400, Alex Deucher wrote: > On Thu, Mar 26, 2020 at 5:35 PM Wolfram Sang > <wsa+renesas@sang-engineering.com> wrote: > > > > Move away from the deprecated API. > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > patches 1,6, are: > Acked-by: Alex Deucher <alexander.deucher@amd.com> Should we commit all to drm-misc-next? Sam > > > --- > > drivers/gpu/drm/radeon/radeon_atombios.c | 4 ++-- > > drivers/gpu/drm/radeon/radeon_combios.c | 4 ++-- > > 2 files changed, 4 insertions(+), 4 deletions(-) > > > > diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c > > index 848ef68d9086..5d2591725189 100644 > > --- a/drivers/gpu/drm/radeon/radeon_atombios.c > > +++ b/drivers/gpu/drm/radeon/radeon_atombios.c > > @@ -2111,7 +2111,7 @@ static int radeon_atombios_parse_power_table_1_3(struct radeon_device *rdev) > > ucOverdriveThermalController]; > > info.addr = power_info->info.ucOverdriveControllerAddress >> 1; > > strlcpy(info.type, name, sizeof(info.type)); > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > } > > } > > num_modes = power_info->info.ucNumOfPowerModeEntries; > > @@ -2351,7 +2351,7 @@ static void radeon_atombios_add_pplib_thermal_controller(struct radeon_device *r > > const char *name = pp_lib_thermal_controller_names[controller->ucType]; > > info.addr = controller->ucI2cAddress >> 1; > > strlcpy(info.type, name, sizeof(info.type)); > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > } > > } else { > > DRM_INFO("Unknown thermal controller type %d at 0x%02x %s fan control\n", > > diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c > > index c3e49c973812..d3c04df7e75d 100644 > > --- a/drivers/gpu/drm/radeon/radeon_combios.c > > +++ b/drivers/gpu/drm/radeon/radeon_combios.c > > @@ -2704,7 +2704,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) > > const char *name = thermal_controller_names[thermal_controller]; > > info.addr = i2c_addr >> 1; > > strlcpy(info.type, name, sizeof(info.type)); > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > } > > } > > } else { > > @@ -2721,7 +2721,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) > > const char *name = "f75375"; > > info.addr = 0x28; > > strlcpy(info.type, name, sizeof(info.type)); > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > DRM_INFO("Possible %s thermal controller at 0x%02x\n", > > name, info.addr); > > } > > -- > > 2.20.1 > > > > _______________________________________________ > > dri-devel mailing list > > dri-devel@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/dri-devel > _______________________________________________ > dri-devel mailing list > dri-devel@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dri-devel _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 6/6] drm/radeon: convert to use i2c_new_client_device() 2020-03-27 15:25 ` Sam Ravnborg @ 2020-03-27 15:27 ` Alex Deucher 2020-03-27 15:45 ` Wolfram Sang 0 siblings, 1 reply; 9+ messages in thread From: Alex Deucher @ 2020-03-27 15:27 UTC (permalink / raw) To: Sam Ravnborg Cc: David Airlie, LKML, Maling list - DRI developers, Wolfram Sang, amd-gfx list, Alex Deucher, Christian König, Linux I2C On Fri, Mar 27, 2020 at 11:25 AM Sam Ravnborg <sam@ravnborg.org> wrote: > > On Fri, Mar 27, 2020 at 10:25:16AM -0400, Alex Deucher wrote: > > On Thu, Mar 26, 2020 at 5:35 PM Wolfram Sang > > <wsa+renesas@sang-engineering.com> wrote: > > > > > > Move away from the deprecated API. > > > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > > > patches 1,6, are: > > Acked-by: Alex Deucher <alexander.deucher@amd.com> > Should we commit all to drm-misc-next? I'm fine to see it go through whatever tree makes sense. Alex > > Sam > > > > > > > --- > > > drivers/gpu/drm/radeon/radeon_atombios.c | 4 ++-- > > > drivers/gpu/drm/radeon/radeon_combios.c | 4 ++-- > > > 2 files changed, 4 insertions(+), 4 deletions(-) > > > > > > diff --git a/drivers/gpu/drm/radeon/radeon_atombios.c b/drivers/gpu/drm/radeon/radeon_atombios.c > > > index 848ef68d9086..5d2591725189 100644 > > > --- a/drivers/gpu/drm/radeon/radeon_atombios.c > > > +++ b/drivers/gpu/drm/radeon/radeon_atombios.c > > > @@ -2111,7 +2111,7 @@ static int radeon_atombios_parse_power_table_1_3(struct radeon_device *rdev) > > > ucOverdriveThermalController]; > > > info.addr = power_info->info.ucOverdriveControllerAddress >> 1; > > > strlcpy(info.type, name, sizeof(info.type)); > > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > > } > > > } > > > num_modes = power_info->info.ucNumOfPowerModeEntries; > > > @@ -2351,7 +2351,7 @@ static void radeon_atombios_add_pplib_thermal_controller(struct radeon_device *r > > > const char *name = pp_lib_thermal_controller_names[controller->ucType]; > > > info.addr = controller->ucI2cAddress >> 1; > > > strlcpy(info.type, name, sizeof(info.type)); > > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > > } > > > } else { > > > DRM_INFO("Unknown thermal controller type %d at 0x%02x %s fan control\n", > > > diff --git a/drivers/gpu/drm/radeon/radeon_combios.c b/drivers/gpu/drm/radeon/radeon_combios.c > > > index c3e49c973812..d3c04df7e75d 100644 > > > --- a/drivers/gpu/drm/radeon/radeon_combios.c > > > +++ b/drivers/gpu/drm/radeon/radeon_combios.c > > > @@ -2704,7 +2704,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) > > > const char *name = thermal_controller_names[thermal_controller]; > > > info.addr = i2c_addr >> 1; > > > strlcpy(info.type, name, sizeof(info.type)); > > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > > } > > > } > > > } else { > > > @@ -2721,7 +2721,7 @@ void radeon_combios_get_power_modes(struct radeon_device *rdev) > > > const char *name = "f75375"; > > > info.addr = 0x28; > > > strlcpy(info.type, name, sizeof(info.type)); > > > - i2c_new_device(&rdev->pm.i2c_bus->adapter, &info); > > > + i2c_new_client_device(&rdev->pm.i2c_bus->adapter, &info); > > > DRM_INFO("Possible %s thermal controller at 0x%02x\n", > > > name, info.addr); > > > } > > > -- > > > 2.20.1 > > > > > > _______________________________________________ > > > dri-devel mailing list > > > dri-devel@lists.freedesktop.org > > > https://lists.freedesktop.org/mailman/listinfo/dri-devel > > _______________________________________________ > > dri-devel mailing list > > dri-devel@lists.freedesktop.org > > https://lists.freedesktop.org/mailman/listinfo/dri-devel _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 6/6] drm/radeon: convert to use i2c_new_client_device() 2020-03-27 15:27 ` Alex Deucher @ 2020-03-27 15:45 ` Wolfram Sang 2020-03-27 17:03 ` Sam Ravnborg 0 siblings, 1 reply; 9+ messages in thread From: Wolfram Sang @ 2020-03-27 15:45 UTC (permalink / raw) To: Alex Deucher Cc: David Airlie, LKML, Maling list - DRI developers, Wolfram Sang, amd-gfx list, Alex Deucher, Sam Ravnborg, Christian König, Linux I2C [-- Attachment #1.1: Type: text/plain, Size: 435 bytes --] > > > > Move away from the deprecated API. > > > > > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > > > > > patches 1,6, are: > > > Acked-by: Alex Deucher <alexander.deucher@amd.com> > > Should we commit all to drm-misc-next? > > I'm fine to see it go through whatever tree makes sense. I'd suggest drm-misc-next to minimize merge conflicts. But I can take it via I2C tree, too, if desired. [-- Attachment #1.2: signature.asc --] [-- Type: application/pgp-signature, Size: 833 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH 6/6] drm/radeon: convert to use i2c_new_client_device() 2020-03-27 15:45 ` Wolfram Sang @ 2020-03-27 17:03 ` Sam Ravnborg 0 siblings, 0 replies; 9+ messages in thread From: Sam Ravnborg @ 2020-03-27 17:03 UTC (permalink / raw) To: Wolfram Sang Cc: David Airlie, LKML, Maling list - DRI developers, Wolfram Sang, amd-gfx list, Alex Deucher, Alex Deucher, Christian König, Linux I2C On Fri, Mar 27, 2020 at 04:45:09PM +0100, Wolfram Sang wrote: > > > > > > Move away from the deprecated API. > > > > > > > > > > Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com> > > > > > > > > patches 1,6, are: > > > > Acked-by: Alex Deucher <alexander.deucher@amd.com> > > > Should we commit all to drm-misc-next? > > > > I'm fine to see it go through whatever tree makes sense. > > I'd suggest drm-misc-next to minimize merge conflicts. But I can take it > via I2C tree, too, if desired. If no-one else speaks up until tomorrow I will land them in drm-misc-next. Just wanted to make sure it was OK. Sam _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 9+ 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:09 ` [PATCH 1/6] drm/amdgpu: convert to use i2c_new_client_device() Wolfram Sang 2020-03-26 21:10 ` [PATCH 6/6] drm/radeon: " Wolfram Sang @ 2020-03-28 21:49 ` Sam Ravnborg 2 siblings, 0 replies; 9+ messages in thread From: Sam Ravnborg @ 2020-03-28 21:49 UTC (permalink / raw) To: Wolfram Sang; +Cc: nouveau, amd-gfx, linux-i2c, dri-devel, 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 _______________________________________________ amd-gfx mailing list amd-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/amd-gfx ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2020-03-28 21:49 UTC | newest] Thread overview: 9+ 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:09 ` [PATCH 1/6] drm/amdgpu: convert to use i2c_new_client_device() Wolfram Sang 2020-03-26 21:10 ` [PATCH 6/6] drm/radeon: " Wolfram Sang 2020-03-27 14:25 ` Alex Deucher 2020-03-27 15:25 ` Sam Ravnborg 2020-03-27 15:27 ` Alex Deucher 2020-03-27 15:45 ` Wolfram Sang 2020-03-27 17:03 ` Sam Ravnborg 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; as well as URLs for NNTP newsgroup(s).