[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-Id: <20210221132246.1154-2-knv418@gmail.com>
Date: Sun, 21 Feb 2021 16:22:46 +0300
From: Nikolay Kyx <knv418@...il.com>
To: gregkh@...uxfoundation.org, sergiu.cuciurean@...log.com
Cc: Nikolay Kyx <knv418@...il.com>, devel@...verdev.osuosl.org,
linux-kernel@...r.kernel.org
Subject: [PATCH v4 02/02] staging: kpc2000: code style: fix line length issue
This patch fixes the following checkpatch.pl warning:
WARNING: line length of 124 exceeds 100 columns
in file kpc2000_i2c.c
Signed-off-by: Nikolay Kyx <knv418@...il.com>
---
Additionally some style warnings remain valid here and could be fixed by
another patch.
v2: Edited changelog, as suggested by Greg KH <gregkh@...uxfoundation.org>
v3: Splitted patch in two parts, as suggested by Greg KH <gregkh@...uxfoundation.org>
v4: Changed patch subject line, as suggested by Greg KH <gregkh@...uxfoundation.org>
drivers/staging/kpc2000/kpc2000_i2c.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/staging/kpc2000/kpc2000_i2c.c b/drivers/staging/kpc2000/kpc2000_i2c.c
index 25bb5c97dd21..68f5ec000365 100644
--- a/drivers/staging/kpc2000/kpc2000_i2c.c
+++ b/drivers/staging/kpc2000/kpc2000_i2c.c
@@ -200,7 +200,9 @@ static int i801_check_post(struct kpc_i2c *priv, int status, int timeout)
outb_p(status & STATUS_FLAGS, SMBHSTSTS(priv));
status = inb_p(SMBHSTSTS(priv)) & STATUS_FLAGS;
if (status)
- dev_warn(&priv->adapter.dev, "Failed clearing status flags at end of transaction (%02x)\n", status);
+ dev_warn(&priv->adapter.dev,
+ "Failed clearing status flags at end of transaction (%02x)\n",
+ status);
}
return result;
--
2.30.1
Powered by blists - more mailing lists