提交 3fed8068 编写于 作者: J Jingoo Han 提交者: Mark Brown

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: NJingoo Han <jg1.han@samsung.com>
Acked-by: NJason Cooper <jason@lakedaemon.net>
Signed-off-by: NMark Brown <broonie@linaro.org>
上级 61e6cfa8
...@@ -84,8 +84,8 @@ static int orion_spi_set_transfer_size(struct orion_spi *orion_spi, int size) ...@@ -84,8 +84,8 @@ static int orion_spi_set_transfer_size(struct orion_spi *orion_spi, int size)
orion_spi_clrbits(orion_spi, ORION_SPI_IF_CONFIG_REG, orion_spi_clrbits(orion_spi, ORION_SPI_IF_CONFIG_REG,
ORION_SPI_IF_8_16_BIT_MODE); ORION_SPI_IF_8_16_BIT_MODE);
} else { } else {
pr_debug("Bad bits per word value %d (only 8 or 16 are " pr_debug("Bad bits per word value %d (only 8 or 16 are allowed).\n",
"allowed).\n", size); size);
return -EINVAL; return -EINVAL;
} }
...@@ -407,7 +407,7 @@ static int orion_spi_probe(struct platform_device *pdev) ...@@ -407,7 +407,7 @@ static int orion_spi_probe(struct platform_device *pdev)
const u32 *iprop; const u32 *iprop;
int size; int size;
master = spi_alloc_master(&pdev->dev, sizeof *spi); master = spi_alloc_master(&pdev->dev, sizeof(*spi));
if (master == NULL) { if (master == NULL) {
dev_dbg(&pdev->dev, "master allocation failed\n"); dev_dbg(&pdev->dev, "master allocation failed\n");
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册