mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] auxdisplay: Fix errors in cfag12864b-example.c
       [not found] <tencent_657C88BFFDAD2116DFE593516118DBD3BF06@qq.com>
@ 2023-07-18  5:33 ` shijie001
  0 siblings, 0 replies; only message in thread
From: shijie001 @ 2023-07-18  5:33 UTC (permalink / raw)
  To: linux-kernel

The following checkpatch errors are removed:
ERROR: "foo * bar" should be "foo *bar"
ERROR: space prohibited before that '++' (ctx:WxB)
ERROR: trailing statements should be on next line

Signed-off-by: Jie Shi <shijie001@208suo.com>
---
  samples/auxdisplay/cfag12864b-example.c | 7 ++++---
  1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/samples/auxdisplay/cfag12864b-example.c 
b/samples/auxdisplay/cfag12864b-example.c
index 2e3bb7375c99..247789c09eb1 100644
--- a/samples/auxdisplay/cfag12864b-example.c
+++ b/samples/auxdisplay/cfag12864b-example.c
@@ -38,7 +38,7 @@
  #endif

  int cfag12864b_fd;
-unsigned char * cfag12864b_mem;
+unsigned char *cfag12864b_mem;
  unsigned char cfag12864b_buffer[CFAG12864B_SIZE];

  /*
@@ -148,7 +148,7 @@ static void cfag12864b_clear(void)
   * Pixel off: src[i] = 0
   * Pixel on:  src[i] > 0
   */
-static void cfag12864b_format(unsigned char * matrix)
+static void cfag12864b_format(unsigned char *matrix)
  {
      unsigned char i, j, n;

@@ -231,7 +231,7 @@ static void example(unsigned char n)
      case 6:
          printf("Do negative not-ing all bits");
          for (i = 0; i < CFAG12864B_WIDTH; i++)
-            for (j = 0; j < CFAG12864B_HEIGHT; j ++)
+            for (j = 0; j < CFAG12864B_HEIGHT; j++)
                  cfag12864b_not(i, j);
          break;
      }
@@ -258,6 +258,7 @@ int main(int argc, char *argv[])
      for (n = 1; n <= EXAMPLES; n++) {
          example(n);
          cfag12864b_blit();
+
          while (getchar() != '\n');
      }

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

only message in thread, other threads:[~2023-07-18  5:33 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <tencent_657C88BFFDAD2116DFE593516118DBD3BF06@qq.com>
2023-07-18  5:33 ` [PATCH] auxdisplay: Fix errors in cfag12864b-example.c shijie001

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®