aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Kyx <knv418@gmail.com>2021-02-21 16:22:46 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-03-10 09:25:28 +0100
commit47b6079e6f894975e514bff7d6134af2bf6bda9a (patch)
treed9bff58d0706ddd3b633bc4bc1b2b31be11b1497
parentstaging: kpc2000: code style: match alignment with open parenthesis (diff)
downloadlinux-dev-47b6079e6f894975e514bff7d6134af2bf6bda9a.tar.xz
linux-dev-47b6079e6f894975e514bff7d6134af2bf6bda9a.zip
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@gmail.com> Link: https://lore.kernel.org/r/20210221132246.1154-2-knv418@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/kpc2000/kpc2000_i2c.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/staging/kpc2000/kpc2000_i2c.c b/drivers/staging/kpc2000/kpc2000_i2c.c
index 3f1f833d3b51..14f7940fa4fb 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;