search for: 81c0bda8

Displaying 5 results from an estimated 5 matches for "81c0bda8".

2017 Nov 22
2
[PATCH 03/32] therm: Split return code and value in nvkm_get_temp
...amp;& > - therm->func->temp_get(therm) < 0) > + therm->func->temp_get(therm, &val)) > return -EINVAL; > > if (therm->mode == mode) > diff --git a/drm/nouveau/nvkm/subdev/therm/g84.c b/drm/nouveau/nvkm/subdev/therm/g84.c > index 96f8da40..81c0bda8 100644 > --- a/drm/nouveau/nvkm/subdev/therm/g84.c > +++ b/drm/nouveau/nvkm/subdev/therm/g84.c > @@ -27,14 +27,15 @@ > #include <subdev/fuse.h> > > int > -g84_temp_get(struct nvkm_therm *therm) > +g84_temp_get(struct nvkm_therm *therm, int *val) > { > stru...
2017 Nov 22
1
[PATCH 03/32] therm: Split return code and value in nvkm_get_temp
...gt;>> + therm->func->temp_get(therm, &val)) >>> return -EINVAL; >>> >>> if (therm->mode == mode) >>> diff --git a/drm/nouveau/nvkm/subdev/therm/g84.c b/drm/nouveau/nvkm/subdev/therm/g84.c >>> index 96f8da40..81c0bda8 100644 >>> --- a/drm/nouveau/nvkm/subdev/therm/g84.c >>> +++ b/drm/nouveau/nvkm/subdev/therm/g84.c >>> @@ -27,14 +27,15 @@ >>> #include <subdev/fuse.h> >>> >>> int >>> -g84_temp_get(struct nvkm_therm *therm) >>> +g84_te...
2017 Nov 17
0
[PATCH 03/32] therm: Split return code and value in nvkm_get_temp
...if (mode == NVKM_THERM_CTRL_AUTO && - therm->func->temp_get(therm) < 0) + therm->func->temp_get(therm, &val)) return -EINVAL; if (therm->mode == mode) diff --git a/drm/nouveau/nvkm/subdev/therm/g84.c b/drm/nouveau/nvkm/subdev/therm/g84.c index 96f8da40..81c0bda8 100644 --- a/drm/nouveau/nvkm/subdev/therm/g84.c +++ b/drm/nouveau/nvkm/subdev/therm/g84.c @@ -27,14 +27,15 @@ #include <subdev/fuse.h> int -g84_temp_get(struct nvkm_therm *therm) +g84_temp_get(struct nvkm_therm *therm, int *val) { struct nvkm_device *device = therm->subdev.device;...
2017 Nov 22
0
[PATCH 03/32] therm: Split return code and value in nvkm_get_temp
...emp_get(therm) < 0) >> + therm->func->temp_get(therm, &val)) >> return -EINVAL; >> >> if (therm->mode == mode) >> diff --git a/drm/nouveau/nvkm/subdev/therm/g84.c b/drm/nouveau/nvkm/subdev/therm/g84.c >> index 96f8da40..81c0bda8 100644 >> --- a/drm/nouveau/nvkm/subdev/therm/g84.c >> +++ b/drm/nouveau/nvkm/subdev/therm/g84.c >> @@ -27,14 +27,15 @@ >> #include <subdev/fuse.h> >> >> int >> -g84_temp_get(struct nvkm_therm *therm) >> +g84_temp_get(struct nvkm_therm *therm,...
2017 Nov 17
35
[PATCH 00/32] Updated State of my clk patches
Last update here: https://lists.freedesktop.org/archives/nouveau/2017-September/028848.html Basically big cleanup, reordering, simplifications and some renaming to make the code easier to read and to review. I also moved some bugfixes to the front so they can be merged prior the other patches. There was also a bug related to the therm daemon triggering a pstate change leading to PMU lockups,