* [PATCH] spi: spi-omap2-mcspi.c: fix coding style
@ 2013-01-24 12:28 Matthias Brugger
2013-01-25 7:58 ` Jarkko Nikula
2013-01-26 8:59 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Matthias Brugger @ 2013-01-24 12:28 UTC (permalink / raw)
To: grant.likely, tony, broonie, jarkko.nikula, zonque, gregkh,
spi-devel-general, linux-omap, trivial
Cc: Matthias Brugger
This patch fixes some indentation errors.
Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
---
drivers/spi/spi-omap2-mcspi.c | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/spi/spi-omap2-mcspi.c b/drivers/spi/spi-omap2-mcspi.c
index b610f52..31f6e84 100644
--- a/drivers/spi/spi-omap2-mcspi.c
+++ b/drivers/spi/spi-omap2-mcspi.c
@@ -1020,7 +1020,7 @@ static void omap2_mcspi_work(struct omap2_mcspi *mcspi, struct spi_message *m)
}
static int omap2_mcspi_transfer_one_message(struct spi_master *master,
- struct spi_message *m)
+ struct spi_message *m)
{
struct omap2_mcspi *mcspi;
struct spi_transfer *t;
@@ -1041,7 +1041,7 @@ static int omap2_mcspi_transfer_one_message(struct spi_master *master,
|| (len && !(rx_buf || tx_buf))
|| (t->bits_per_word &&
( t->bits_per_word < 4
- || t->bits_per_word > 32))) {
+ || t->bits_per_word > 32))) {
dev_dbg(mcspi->dev, "transfer: %d Hz, %d %s%s, %d bpw\n",
t->speed_hz,
len,
@@ -1052,8 +1052,8 @@ static int omap2_mcspi_transfer_one_message(struct spi_master *master,
}
if (t->speed_hz && t->speed_hz < (OMAP2_MCSPI_MAX_FREQ >> 15)) {
dev_dbg(mcspi->dev, "speed_hz %d below minimum %d Hz\n",
- t->speed_hz,
- OMAP2_MCSPI_MAX_FREQ >> 15);
+ t->speed_hz,
+ OMAP2_MCSPI_MAX_FREQ >> 15);
return -EINVAL;
}
@@ -1099,7 +1099,7 @@ static int omap2_mcspi_master_setup(struct omap2_mcspi *mcspi)
return ret;
mcspi_write_reg(master, OMAP2_MCSPI_WAKEUPENABLE,
- OMAP2_MCSPI_WAKEUPENABLE_WKEN);
+ OMAP2_MCSPI_WAKEUPENABLE_WKEN);
ctx->wakeupenable = OMAP2_MCSPI_WAKEUPENABLE_WKEN;
omap2_mcspi_set_master_mode(master);
@@ -1228,7 +1228,7 @@ static int omap2_mcspi_probe(struct platform_device *pdev)
sprintf(dma_ch_name, "rx%d", i);
dma_res = platform_get_resource_byname(pdev, IORESOURCE_DMA,
- dma_ch_name);
+ dma_ch_name);
if (!dma_res) {
dev_dbg(&pdev->dev, "cannot get DMA RX channel\n");
status = -ENODEV;
@@ -1238,7 +1238,7 @@ static int omap2_mcspi_probe(struct platform_device *pdev)
mcspi->dma_channels[i].dma_rx_sync_dev = dma_res->start;
sprintf(dma_ch_name, "tx%d", i);
dma_res = platform_get_resource_byname(pdev, IORESOURCE_DMA,
- dma_ch_name);
+ dma_ch_name);
if (!dma_res) {
dev_dbg(&pdev->dev, "cannot get DMA TX channel\n");
status = -ENODEV;
@@ -1254,7 +1254,7 @@ static int omap2_mcspi_probe(struct platform_device *pdev)
pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
if (IS_ERR(pinctrl))
dev_warn(&pdev->dev,
- "pins are not configured from the driver\n");
+ "pins are not configured from the driver\n");
pm_runtime_use_autosuspend(&pdev->dev);
pm_runtime_set_autosuspend_delay(&pdev->dev, SPI_AUTOSUSPEND_TIMEOUT);
--
1.7.11.7
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: spi-omap2-mcspi.c: fix coding style
2013-01-24 12:28 [PATCH] spi: spi-omap2-mcspi.c: fix coding style Matthias Brugger
@ 2013-01-25 7:58 ` Jarkko Nikula
2013-01-26 8:59 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Jarkko Nikula @ 2013-01-25 7:58 UTC (permalink / raw)
To: Matthias Brugger
Cc: grant.likely, tony, broonie, zonque, gregkh, spi-devel-general,
linux-omap, trivial
Hi
On Thu, 24 Jan 2013 13:28:58 +0100
Matthias Brugger <matthias.bgg@gmail.com> wrote:
> This patch fixes some indentation errors.
>
> Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
> ---
> drivers/spi/spi-omap2-mcspi.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
...
> @@ -1052,8 +1052,8 @@ static int omap2_mcspi_transfer_one_message(struct spi_master *master,
> }
> if (t->speed_hz && t->speed_hz < (OMAP2_MCSPI_MAX_FREQ >> 15)) {
> dev_dbg(mcspi->dev, "speed_hz %d below minimum %d Hz\n",
> - t->speed_hz,
> - OMAP2_MCSPI_MAX_FREQ >> 15);
> + t->speed_hz,
> + OMAP2_MCSPI_MAX_FREQ >> 15);
I have some mixed feelings from these changes and looking at the driver currently. Above change makes the readability a step backward but the driver has already these so in that sense your change makes the style more consistent.
I can see three options with this patch: take your patch as it, do nothing or do larger style 'spring cleanup'.
I'm personally somewhere take as it or do nothing. If style is not terribly wrong I personally favor smaller style fixes when those lines are changing anyway.
In case maintainer takes this you could add:
Reviewed-by: Jarkko Nikula <jarkko.nikula@bitmer.com>
--
Jarkko
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] spi: spi-omap2-mcspi.c: fix coding style
2013-01-24 12:28 [PATCH] spi: spi-omap2-mcspi.c: fix coding style Matthias Brugger
2013-01-25 7:58 ` Jarkko Nikula
@ 2013-01-26 8:59 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2013-01-26 8:59 UTC (permalink / raw)
To: Matthias Brugger
Cc: grant.likely, tony, jarkko.nikula, zonque, gregkh,
spi-devel-general, linux-omap, trivial
[-- Attachment #1: Type: text/plain, Size: 128 bytes --]
On Thu, Jan 24, 2013 at 01:28:58PM +0100, Matthias Brugger wrote:
> This patch fixes some indentation errors.
Applied, thanks.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-01-26 8:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-24 12:28 [PATCH] spi: spi-omap2-mcspi.c: fix coding style Matthias Brugger
2013-01-25 7:58 ` Jarkko Nikula
2013-01-26 8:59 ` Mark Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).