Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754288Ab2JORZV (ORCPT ); Mon, 15 Oct 2012 13:25:21 -0400 Received: from mail-pa0-f46.google.com ([209.85.220.46]:34948 "EHLO mail-pa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754235Ab2JORZE (ORCPT ); Mon, 15 Oct 2012 13:25:04 -0400 From: Sangho Yi To: devel@driverdev.osuosl.org Cc: gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, Sangho Yi Subject: [PATCH 09/14] staging: csr: Fixed foo * bar --> foo *bar on io.c Date: Tue, 16 Oct 2012 02:24:28 +0900 Message-Id: <1350321868-2613-9-git-send-email-antiroot@gmail.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1350321868-2613-1-git-send-email-antiroot@gmail.com> References: <1350321868-2613-1-git-send-email-antiroot@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1146 Lines: 37 There were just a few minor errors like foo * bar, so I fixed them. Signed-off-by: Sangho Yi --- 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 934eacd..e85fe94 100644 --- a/drivers/staging/csr/io.c +++ b/drivers/staging/csr/io.c @@ -85,7 +85,7 @@ static int uf_read_proc(char *page, char **start, off_t offset, int count, #ifdef CSR_WIFI_RX_PATH_SPLIT -static CsrResult signal_buffer_init(unifi_priv_t * priv, int size) +static CsrResult signal_buffer_init(unifi_priv_t *priv, int size) { int i; func_enter(); @@ -115,7 +115,7 @@ static CsrResult signal_buffer_init(unifi_priv_t * priv, int size) } -static void signal_buffer_free(unifi_priv_t * priv, int size) +static void signal_buffer_free(unifi_priv_t *priv, int size) { int i; -- 1.7.9.5 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/