[PATCH] drm/nouveau/therm: remove redundant duty == target check

2023-12-19 Thread Colin Ian King
The check for duty == target is always false because it is in an if block where duty != target. A previous change added the duty != target check and so the check duty == target check is now redundant and can be removed. Cleans up a cppcheck warning: drivers/gpu/drm/nouveau/nvkm/subdev/therm/fan.c:

Re: [PATCH] drm/nouveau: include drm/drm_edid.h only where needed

2023-12-19 Thread Jani Nikula
On Tue, 12 Dec 2023, Jani Nikula wrote: > Including drm_edid.h from nouveau_connector.h causes the rebuild of 15 > files when drm_edid.h is modified, while there are only a few files that > actually need to include drm_edid.h. Ping? > > Signed-off-by: Jani Nikula > --- > drivers/gpu/drm/nouvea