All of lore.kernel.org
 help / color / mirror / Atom feed
From: hanyu001@208suo.com
To: kvalo@kernel.org
Cc: libertas-dev@lists.infradead.org, linux-wireless@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: [PATCH] libertas: debugfs: Added missing spaces
Date: Wed, 19 Jul 2023 17:31:51 +0800	[thread overview]
Message-ID: <013fa54eeb505b6a7080c6d4ccc3a445@208suo.com> (raw)
In-Reply-To: <tencent_0EA6836B1E10A9623158112DD43D48C95605@qq.com>

Fixes the following checkpatch errors:

./drivers/net/wireless/marvell/libertas/debugfs.c:712: ERROR: spaces 
required around that '=' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:712: ERROR: spaces 
required around that '<' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:723: ERROR: spaces 
required around that '=' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:723: ERROR: spaces 
required around that '<' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:734: ERROR: spaces 
required around that '=' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:734: ERROR: spaces 
required around that '<' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:754: ERROR: spaces 
required around that '=' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:754: ERROR: spaces 
required around that '<' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:754: ERROR: space 
required before the open parenthesis '('
./drivers/net/wireless/marvell/libertas/debugfs.c:759: ERROR: spaces 
required around that '=' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:759: ERROR: spaces 
required around that '<' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:759: ERROR: space 
required before the open parenthesis '('
./drivers/net/wireless/marvell/libertas/debugfs.c:766: ERROR: spaces 
required around that '=' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:766: ERROR: spaces 
required around that '<' (ctx:VxV)
./drivers/net/wireless/marvell/libertas/debugfs.c:766: ERROR: space 
required before the open parenthesis '('

Signed-off-by: Yu Han <hanyu001@208suo.com>
---
  drivers/net/wireless/marvell/libertas/debugfs.c | 12 ++++++------
  1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/net/wireless/marvell/libertas/debugfs.c 
b/drivers/net/wireless/marvell/libertas/debugfs.c
index c604613..8939bf4 100644
--- a/drivers/net/wireless/marvell/libertas/debugfs.c
+++ b/drivers/net/wireless/marvell/libertas/debugfs.c
@@ -709,7 +709,7 @@ void lbs_debugfs_init_one(struct lbs_private *priv, 
struct net_device *dev)

      priv->debugfs_dir = debugfs_create_dir(dev->name, lbs_dir);

-    for (i=0; i<ARRAY_SIZE(debugfs_files); i++) {
+    for (i = 0; i < ARRAY_SIZE(debugfs_files); i++) {
          files = &debugfs_files[i];
          priv->debugfs_files[i] = debugfs_create_file(files->name,
                                   files->perm,
@@ -720,7 +720,7 @@ void lbs_debugfs_init_one(struct lbs_private *priv, 
struct net_device *dev)

      priv->events_dir = debugfs_create_dir("subscribed_events", 
priv->debugfs_dir);

-    for (i=0; i<ARRAY_SIZE(debugfs_events_files); i++) {
+    for (i = 0; i < ARRAY_SIZE(debugfs_events_files); i++) {
          files = &debugfs_events_files[i];
          priv->debugfs_events_files[i] = 
debugfs_create_file(files->name,
                                   files->perm,
@@ -731,7 +731,7 @@ void lbs_debugfs_init_one(struct lbs_private *priv, 
struct net_device *dev)

      priv->regs_dir = debugfs_create_dir("registers", 
priv->debugfs_dir);

-    for (i=0; i<ARRAY_SIZE(debugfs_regs_files); i++) {
+    for (i = 0; i < ARRAY_SIZE(debugfs_regs_files); i++) {
          files = &debugfs_regs_files[i];
          priv->debugfs_regs_files[i] = debugfs_create_file(files->name,
                                   files->perm,
@@ -751,19 +751,19 @@ void lbs_debugfs_remove_one(struct lbs_private 
*priv)
  {
      int i;

-    for(i=0; i<ARRAY_SIZE(debugfs_regs_files); i++)
+    for (i = 0; i < ARRAY_SIZE(debugfs_regs_files); i++)
          debugfs_remove(priv->debugfs_regs_files[i]);

      debugfs_remove(priv->regs_dir);

-    for(i=0; i<ARRAY_SIZE(debugfs_events_files); i++)
+    for (i = 0; i < ARRAY_SIZE(debugfs_events_files); i++)
          debugfs_remove(priv->debugfs_events_files[i]);

      debugfs_remove(priv->events_dir);
  #ifdef PROC_DEBUG
      debugfs_remove(priv->debugfs_debug);
  #endif
-    for(i=0; i<ARRAY_SIZE(debugfs_files); i++)
+    for (i = 0; i < ARRAY_SIZE(debugfs_files); i++)
          debugfs_remove(priv->debugfs_files[i]);
      debugfs_remove(priv->debugfs_dir);
  }

       reply	other threads:[~2023-07-19  9:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <tencent_0EA6836B1E10A9623158112DD43D48C95605@qq.com>
2023-07-19  9:31 ` hanyu001 [this message]
2023-07-24 14:26   ` [PATCH] libertas: debugfs: Added missing spaces Kalle Valo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=013fa54eeb505b6a7080c6d4ccc3a445@208suo.com \
    --to=hanyu001@208suo.com \
    --cc=kvalo@kernel.org \
    --cc=libertas-dev@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-wireless@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.