mirror of https://gitee.com/openkylin/linux.git
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:
parent
061c43a354
commit
bba80c8482
|
@ -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;
|
||||
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue