nouveau.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Nouveau] [PATCH] drm/nouveau/clk: add missing spaces after ', ' and '{'
       [not found] <20230711031602.78854-1-xujianghui@cdjrlc.com>
@ 2023-07-11  3:17 ` sunran001
  0 siblings, 0 replies; only message in thread
From: sunran001 @ 2023-07-11  3:17 UTC (permalink / raw)
  To: airlied, daniel; +Cc: nouveau, linux-kernel, dri-devel

Add missing spaces to clear checkpatch errors.

ERROR: space required before the open brace '{'
ERROR: space required before the open parenthesis '('

Signed-off-by: Ran Sun <sunran001@208suo.com>
---
  drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.c | 6 +++---
  1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.c 
b/drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.c
index 81f103f88dc8..f85d6a08c61a 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/clk/mcp77.c
@@ -56,7 +56,7 @@ read_pll(struct mcp77_clk *clk, u32 base)
      u32 clock = 0;
      int N1, M1;

-    switch (base){
+    switch (base) {
      case 0x4020:
          post_div = 1 << ((nvkm_rd32(device, 0x4070) & 0x000f0000) >> 
16);
          break;
@@ -222,7 +222,7 @@ mcp77_clk_calc(struct nvkm_clk *base, struct 
nvkm_cstate *cstate)
          /* NVCTRL is actually used _after_ NVPOST, and after what we
           * call NVPLL. To make matters worse, NVPOST is an integer
           * divider instead of a right-shift number. */
-        if(P1 > 2) {
+        if (P1 > 2) {
              P2 = P1 - 2;
              P1 = 2;
          }
@@ -258,7 +258,7 @@ mcp77_clk_calc(struct nvkm_clk *base, struct 
nvkm_cstate *cstate)
      /* vclk */
      out = calc_P(core, vdec, &divs);
      clock = calc_P(500000, vdec, &P1);
-    if(abs(vdec - out) <= abs(vdec - clock)) {
+    if (abs(vdec - out) <= abs(vdec - clock)) {
          clk->vsrc = nv_clk_src_cclk;
          clk->vdiv = divs << 16;
      } else {

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2023-07-11  3:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230711031602.78854-1-xujianghui@cdjrlc.com>
2023-07-11  3:17 ` [Nouveau] [PATCH] drm/nouveau/clk: add missing spaces after ', ' and '{' sunran001

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).