[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1350321868-2613-8-git-send-email-antiroot@gmail.com>
Date: Tue, 16 Oct 2012 02:24:27 +0900
From: Sangho Yi <antiroot@...il.com>
To: devel@...verdev.osuosl.org
Cc: gregkh@...uxfoundation.org, linux-kernel@...r.kernel.org,
Sangho Yi <antiroot@...il.com>
Subject: [PATCH 08/14] staging: csr: Removed unnecessary whitespace before newline on io.c
I removed a few unnecessary whitespace before \n, and now it's done.
Signed-off-by: Sangho Yi <antiroot@...il.com>
---
drivers/staging/csr/io.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/csr/io.c b/drivers/staging/csr/io.c
index cecc1df..934eacd 100644
--- a/drivers/staging/csr/io.c
+++ b/drivers/staging/csr/io.c
@@ -100,7 +100,7 @@ static CsrResult signal_buffer_init(unifi_priv_t * priv, int size)
kmalloc(UNIFI_PACKED_SIGBUF_SIZE, GFP_KERNEL);
if (priv->rxSignalBuffer.rx_buff[i].bufptr == NULL) {
int j;
- unifi_error(priv, "signal_buffer_init:Failed to Allocate shared memory for T-H signals \n");
+ unifi_error(priv, "signal_buffer_init:Failed to Allocate shared memory for T-H signals\n");
for (j = 0; j < i; j++) {
priv->rxSignalBuffer.rx_buff[j].sig_len = 0;
kfree(priv->rxSignalBuffer.rx_buff[j].bufptr);
@@ -389,7 +389,7 @@ register_unifi_sdio(CsrSdioFunction *sdio_dev, int bus_id, struct device *dev)
}
priv->rx_workqueue = create_singlethread_workqueue("rx_workq");
if (priv->rx_workqueue == NULL) {
- unifi_error(priv, "create_singlethread_workqueue failed \n");
+ unifi_error(priv, "create_singlethread_workqueue failed\n");
goto failed3;
}
INIT_WORK(&priv->rx_work_struct, rx_wq_handler);
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists