diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-10-13 21:35:08 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-10-15 08:07:19 -0400 |
commit | 3fed8068fbad01b044c40c4df24bb97e853813ff (patch) | |
tree | 0ef5e0da41cdb79879a119a2e13bca2b6db1e8cb /drivers/spi/spi-orion.c | |
parent | 61e6cfa80de5760bbe406f4e815b7739205754d2 (diff) |
spi: orion: Fix checkpatch issue
Fix the following checkpatch warnings.
WARNING: quoted string split across lines
WARNING: sizeof *spi should be sizeof(*spi)
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Jason Cooper <jason@lakedaemon.net>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/spi/spi-orion.c')
-rw-r--r-- | drivers/spi/spi-orion.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/spi/spi-orion.c b/drivers/spi/spi-orion.c index 1d1d321d90c4..c6caed3c4625 100644 --- a/drivers/spi/spi-orion.c +++ b/drivers/spi/spi-orion.c | |||
@@ -84,8 +84,8 @@ static int orion_spi_set_transfer_size(struct orion_spi *orion_spi, int size) | |||
84 | orion_spi_clrbits(orion_spi, ORION_SPI_IF_CONFIG_REG, | 84 | orion_spi_clrbits(orion_spi, ORION_SPI_IF_CONFIG_REG, |
85 | ORION_SPI_IF_8_16_BIT_MODE); | 85 | ORION_SPI_IF_8_16_BIT_MODE); |
86 | } else { | 86 | } else { |
87 | pr_debug("Bad bits per word value %d (only 8 or 16 are " | 87 | pr_debug("Bad bits per word value %d (only 8 or 16 are allowed).\n", |
88 | "allowed).\n", size); | 88 | size); |
89 | return -EINVAL; | 89 | return -EINVAL; |
90 | } | 90 | } |
91 | 91 | ||
@@ -407,7 +407,7 @@ static int orion_spi_probe(struct platform_device *pdev) | |||
407 | const u32 *iprop; | 407 | const u32 *iprop; |
408 | int size; | 408 | int size; |
409 | 409 | ||
410 | master = spi_alloc_master(&pdev->dev, sizeof *spi); | 410 | master = spi_alloc_master(&pdev->dev, sizeof(*spi)); |
411 | if (master == NULL) { | 411 | if (master == NULL) { |
412 | dev_dbg(&pdev->dev, "master allocation failed\n"); | 412 | dev_dbg(&pdev->dev, "master allocation failed\n"); |
413 | return -ENOMEM; | 413 | return -ENOMEM; |