* [PATCH] drm/nouveau: move assignment out of condition and fix spacing
@ 2025-08-18 10:44 darshanrathod475
0 siblings, 0 replies; only message in thread
From: darshanrathod475 @ 2025-08-18 10:44 UTC (permalink / raw)
To: lyude, dakr
Cc: airlied, simona, dri-devel, nouveau, linux-kernel, Darshan Rathod
From: Darshan Rathod <darshanrathod475@gmail.com>
Simplify conditional logic by moving the assignment of pll_lim.reg
to reg1 out of the if() statement. Also adjust spacing in an if()
statement for consistency with kernel style.
Signed-off-by: Darshan Rathod <darshanrathod475@gmail.com>
---
drivers/gpu/drm/nouveau/dispnv04/hw.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/dispnv04/hw.c b/drivers/gpu/drm/nouveau/dispnv04/hw.c
index 8b376f9c8746..165ba41422a5 100644
--- a/drivers/gpu/drm/nouveau/dispnv04/hw.c
+++ b/drivers/gpu/drm/nouveau/dispnv04/hw.c
@@ -172,7 +172,9 @@ nouveau_hw_get_pllvals(struct drm_device *dev, enum nvbios_pll_type plltype,
int ret;
ret = nvbios_pll_parse(bios, plltype, &pll_lim);
- if (ret || !(reg1 = pll_lim.reg))
+ reg1 = pll_lim.reg;
+
+ if (ret || !reg1)
return -ENOENT;
pll1 = nvif_rd32(device, reg1);
@@ -747,7 +749,7 @@ nv_load_state_ext(struct drm_device *dev, int head,
/* Not waiting for vertical retrace before modifying
CRE_53/CRE_54 causes lockups. */
nvif_msec(&drm->client.device, 650,
- if ( (nvif_rd32(device, NV_PRMCIO_INP0__COLOR) & 8))
+ if ((nvif_rd32(device, NV_PRMCIO_INP0__COLOR) & 8))
break;
);
nvif_msec(&drm->client.device, 650,
--
2.25.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-08-18 10:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-18 10:44 [PATCH] drm/nouveau: move assignment out of condition and fix spacing darshanrathod475
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).