linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10] Non-printk continuation line fixes
@ 2010-02-02  7:22 Joe Perches
  2010-02-02  7:22 ` [PATCH 07/10] drivers/spi/spi_s3c64xx.c: Fix continuation line formats Joe Perches
  0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2010-02-02  7:22 UTC (permalink / raw)
  To: linux-kernel
  Cc: linux-fbdev, Mark Brown, linux-ia64, kvm, David Airlie,
	alsa-devel, Jaroslav Kysela, Grant Likely, linux-ide, devel,
	David Brownell, linux-scsi, lm-sensors, Takashi Iwai, Scott Fang,
	Avi Kivity, dri-devel, Jeff Garzik, Xiantao Zhang, Andrew Vasquez,
	Fenghua Yu, Roger Lucas, Greg Kroah-Hartman, James E.J. Bottomley,
	Liam Girdwood, Tony

Some more fixes to formats with continuation lines

Joe Perches (10):
  arch/ia64: Fix continuation line formats
  drivers/ata: Fix continuation line formats
  drivers/gpu/drm/i915/intel_bios.c: Fix continuation line formats
  drivers/hwmon/vt8231.c: Fix continuation line formats
  drivers/net/davinci_emac.c: Fix continuation line formats
  drivers/scsi/qla2xxx/qua_os.c: Fix continuation line formats
  drivers/spi/spi_s3c64xx.c: Fix continuation line formats
  drivers/staging: Fix continuation line formats
  drivers/video/via: Fix continuation line formats
  sound/soc/s3c24xx/s2c-pcm.c: Fix continuation line formats

 arch/ia64/kvm/mmio.c                   |    4 ++--
 arch/ia64/kvm/vcpu.c                   |    4 ++--
 drivers/ata/pata_at91.c                |    4 ++--
 drivers/gpu/drm/i915/intel_bios.c      |    3 +--
 drivers/hwmon/vt8231.c                 |    3 +--
 drivers/net/davinci_emac.c             |    3 +--
 drivers/scsi/qla2xxx/qla_os.c          |    4 ++--
 drivers/spi/spi_s3c64xx.c              |   11 +++++------
 drivers/staging/rtl8192su/r8192S_phy.c |   16 ++++++++--------
 drivers/staging/sep/sep_driver.c       |    5 +++--
 drivers/staging/slicoss/slicoss.c      |    6 ++----
 drivers/video/via/dvi.c                |    8 ++++----
 drivers/video/via/lcd.c                |   12 ++++++------
 sound/soc/s3c24xx/s3c-pcm.c            |    3 +--
 14 files changed, 40 insertions(+), 46 deletions(-)


------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com
--

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 07/10] drivers/spi/spi_s3c64xx.c: Fix continuation line formats
  2010-02-02  7:22 [PATCH 00/10] Non-printk continuation line fixes Joe Perches
@ 2010-02-02  7:22 ` Joe Perches
       [not found]   ` <bf8e8f72e7c2da124daebc9e96f1236e34badbca.1265095094.git.joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Joe Perches @ 2010-02-02  7:22 UTC (permalink / raw)
  To: linux-kernel; +Cc: David Brownell, Grant Likely, spi-devel-general

String constants that are continued on subsequent lines with \
are not good.

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/spi/spi_s3c64xx.c |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/drivers/spi/spi_s3c64xx.c b/drivers/spi/spi_s3c64xx.c
index 88a456d..0d4e37a 100644
--- a/drivers/spi/spi_s3c64xx.c
+++ b/drivers/spi/spi_s3c64xx.c
@@ -632,8 +632,8 @@ static void handle_msg(struct s3c64xx_spi_driver_data *sdd,
 		S3C64XX_SPI_DEACT(sdd);
 
 		if (status) {
-			dev_err(&spi->dev, "I/O Error: \
-				rx-%d tx-%d res:rx-%c tx-%c len-%d\n",
+			dev_err(&spi->dev, "I/O Error: "
+				"rx-%d tx-%d res:rx-%c tx-%c len-%d\n",
 				xfer->rx_buf ? 1 : 0, xfer->tx_buf ? 1 : 0,
 				(sdd->state & RXBUSY) ? 'f' : 'p',
 				(sdd->state & TXBUSY) ? 'f' : 'p',
@@ -1040,11 +1040,10 @@ static int __init s3c64xx_spi_probe(struct platform_device *pdev)
 		goto err8;
 	}
 
-	dev_dbg(&pdev->dev, "Samsung SoC SPI Driver loaded for Bus SPI-%d \
-					with %d Slaves attached\n",
+	dev_dbg(&pdev->dev, "Samsung SoC SPI Driver loaded for Bus SPI-%d "
+					"with %d Slaves attached\n",
 					pdev->id, master->num_chipselect);
-	dev_dbg(&pdev->dev, "\tIOmem=[0x%x-0x%x]\
-					\tDMA=[Rx-%d, Tx-%d]\n",
+	dev_dbg(&pdev->dev, "\tIOmem=[0x%x-0x%x]\tDMA=[Rx-%d, Tx-%d]\n",
 					mem_res->end, mem_res->start,
 					sdd->rx_dmach, sdd->tx_dmach);
 
-- 
1.6.6.rc0.57.gad7a

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 07/10] drivers/spi/spi_s3c64xx.c: Fix continuation line formats
       [not found]   ` <bf8e8f72e7c2da124daebc9e96f1236e34badbca.1265095094.git.joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
@ 2010-02-02  8:21     ` Grant Likely
  0 siblings, 0 replies; 3+ messages in thread
From: Grant Likely @ 2010-02-02  8:21 UTC (permalink / raw)
  To: Joe Perches
  Cc: spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	David Brownell, linux-kernel-u79uwXL29TY76Z2rM5mHXA

On Tue, Feb 2, 2010 at 12:22 AM, Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org> wrote:
> String constants that are continued on subsequent lines with \
> are not good.
>
> Signed-off-by: Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>

Merged into next-spi, thanks.

g.

------------------------------------------------------------------------------
The Planet: dedicated and managed hosting, cloud storage, colocation
Stay online with enterprise data centers and the best network in the business
Choose flexible plans and management services without long-term contracts
Personal 24x7 support from experience hosting pros just a phone call away.
http://p.sf.net/sfu/theplanet-com

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-02-02  8:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-02  7:22 [PATCH 00/10] Non-printk continuation line fixes Joe Perches
2010-02-02  7:22 ` [PATCH 07/10] drivers/spi/spi_s3c64xx.c: Fix continuation line formats Joe Perches
     [not found]   ` <bf8e8f72e7c2da124daebc9e96f1236e34badbca.1265095094.git.joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
2010-02-02  8:21     ` Grant Likely

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).