Commit bba80c84 authored by Nikolay Kyx's avatar Nikolay Kyx Committed by Greg Kroah-Hartman

staging: kpc2000: code style: match alignment with open parenthesis

This patch fixes the following checkpatch.pl check:

CHECK: Alignment should match open parenthesis

in files kpc2000_i2c.c kpc2000_spi.c
Signed-off-by: default avatarNikolay Kyx <knv418@gmail.com>
Link: https://lore.kernel.org/r/20210221132246.1154-1-knv418@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 061c43a3
...@@ -269,7 +269,7 @@ static int i801_block_transaction_by_block(struct kpc_i2c *priv, ...@@ -269,7 +269,7 @@ static int i801_block_transaction_by_block(struct kpc_i2c *priv,
} }
status = i801_transaction(priv, status = i801_transaction(priv,
I801_BLOCK_DATA | ENABLE_INT9 | I801_PEC_EN * hwpec); I801_BLOCK_DATA | ENABLE_INT9 | I801_PEC_EN * hwpec);
if (status) if (status)
return status; return status;
......
...@@ -465,7 +465,7 @@ kp_spi_probe(struct platform_device *pldev) ...@@ -465,7 +465,7 @@ kp_spi_probe(struct platform_device *pldev)
} }
kpspi->base = devm_ioremap(&pldev->dev, r->start, kpspi->base = devm_ioremap(&pldev->dev, r->start,
resource_size(r)); resource_size(r));
status = spi_register_master(master); status = spi_register_master(master);
if (status < 0) { if (status < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment