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: Nikolay Kyx <knv418@gmail.com>
Link: https://lore.kernel.org/r/20210221132246.1154-1-knv418@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Nikolay Kyx 2021-02-21 16:22:45 +03:00 committed by Greg Kroah-Hartman
parent 061c43a354
commit bba80c8482
2 changed files with 2 additions and 2 deletions

View file

@ -269,7 +269,7 @@ static int i801_block_transaction_by_block(struct kpc_i2c *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)
return status;

View file

@ -465,7 +465,7 @@ kp_spi_probe(struct platform_device *pldev)
}
kpspi->base = devm_ioremap(&pldev->dev, r->start,
resource_size(r));
resource_size(r));
status = spi_register_master(master);
if (status < 0) {