diff options
author | Joe Perches <joe@perches.com> | 2010-02-02 02:22:13 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2010-02-02 03:07:07 -0500 |
commit | 8a349d4b13c41c00564cd79f6fabdec347084758 (patch) | |
tree | 00ff48ef78d552df0b47332eafca96adc2a60df6 /drivers/spi/spi_s3c64xx.c | |
parent | fb7899b1f0b748ef966071f5dc23c59ebd57d08f (diff) |
spi/spi_s3c64xx.c: Fix continuation line formats
String constants that are continued on subsequent lines with \
are not good.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/spi/spi_s3c64xx.c')
-rw-r--r-- | 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 32db69540fa9..97365815a729 100644 --- a/drivers/spi/spi_s3c64xx.c +++ b/drivers/spi/spi_s3c64xx.c | |||
@@ -634,8 +634,8 @@ static void handle_msg(struct s3c64xx_spi_driver_data *sdd, | |||
634 | S3C64XX_SPI_DEACT(sdd); | 634 | S3C64XX_SPI_DEACT(sdd); |
635 | 635 | ||
636 | if (status) { | 636 | if (status) { |
637 | dev_err(&spi->dev, "I/O Error: \ | 637 | dev_err(&spi->dev, "I/O Error: " |
638 | rx-%d tx-%d res:rx-%c tx-%c len-%d\n", | 638 | "rx-%d tx-%d res:rx-%c tx-%c len-%d\n", |
639 | xfer->rx_buf ? 1 : 0, xfer->tx_buf ? 1 : 0, | 639 | xfer->rx_buf ? 1 : 0, xfer->tx_buf ? 1 : 0, |
640 | (sdd->state & RXBUSY) ? 'f' : 'p', | 640 | (sdd->state & RXBUSY) ? 'f' : 'p', |
641 | (sdd->state & TXBUSY) ? 'f' : 'p', | 641 | (sdd->state & TXBUSY) ? 'f' : 'p', |
@@ -1039,11 +1039,10 @@ static int __init s3c64xx_spi_probe(struct platform_device *pdev) | |||
1039 | goto err8; | 1039 | goto err8; |
1040 | } | 1040 | } |
1041 | 1041 | ||
1042 | dev_dbg(&pdev->dev, "Samsung SoC SPI Driver loaded for Bus SPI-%d \ | 1042 | dev_dbg(&pdev->dev, "Samsung SoC SPI Driver loaded for Bus SPI-%d " |
1043 | with %d Slaves attached\n", | 1043 | "with %d Slaves attached\n", |
1044 | pdev->id, master->num_chipselect); | 1044 | pdev->id, master->num_chipselect); |
1045 | dev_dbg(&pdev->dev, "\tIOmem=[0x%x-0x%x]\ | 1045 | dev_dbg(&pdev->dev, "\tIOmem=[0x%x-0x%x]\tDMA=[Rx-%d, Tx-%d]\n", |
1046 | \tDMA=[Rx-%d, Tx-%d]\n", | ||
1047 | mem_res->end, mem_res->start, | 1046 | mem_res->end, mem_res->start, |
1048 | sdd->rx_dmach, sdd->tx_dmach); | 1047 | sdd->rx_dmach, sdd->tx_dmach); |
1049 | 1048 | ||