Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751805AbdIJUdT (ORCPT ); Sun, 10 Sep 2017 16:33:19 -0400 Received: from mail2-relais-roc.national.inria.fr ([192.134.164.83]:61649 "EHLO mail2-relais-roc.national.inria.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750946AbdIJUdS (ORCPT ); Sun, 10 Sep 2017 16:33:18 -0400 X-IronPort-AV: E=Sophos;i="5.42,374,1500933600"; d="scan'208";a="290385628" Date: Sun, 10 Sep 2017 22:33:16 +0200 (CEST) From: Julia Lawall X-X-Sender: jll@hadrien To: Harsha Sharma cc: gregkh@linuxfoundation.org, devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, outreachy-kernel@googlegroups.com Subject: Re: [Outreachy kernel] [PATCH 04/10] staging: rtl8723bs: Remove unnecessary spaces at the start of line In-Reply-To: <94120b866c10e83ec66c8b96522ae7d265d254cc.1505052882.git.harshasharmaiitr@gmail.com> Message-ID: References: <94120b866c10e83ec66c8b96522ae7d265d254cc.1505052882.git.harshasharmaiitr@gmail.com> User-Agent: Alpine 2.20 (DEB 67 2015-01-07) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1496 Lines: 37 On Sun, 10 Sep 2017, Harsha Sharma wrote: > No spaces at the start of a line > > Signed-off-by: Harsha Sharma Acked-by: Julia Lawall > --- > drivers/staging/rtl8723bs/os_dep/os_intfs.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/staging/rtl8723bs/os_dep/os_intfs.c b/drivers/staging/rtl8723bs/os_dep/os_intfs.c > index 5ceccd7..97ff3ab 100644 > --- a/drivers/staging/rtl8723bs/os_dep/os_intfs.c > +++ b/drivers/staging/rtl8723bs/os_dep/os_intfs.c > @@ -597,7 +597,7 @@ u32 rtw_start_drv_threads(struct adapter *padapter) > _status = _FAIL; > > padapter->cmdThread = kthread_run(rtw_cmd_thread, padapter, "RTW_CMD_THREAD"); > - if (IS_ERR(padapter->cmdThread)) > + if (IS_ERR(padapter->cmdThread)) > _status = _FAIL; > else > down(&padapter->cmdpriv.terminate_cmdthread_sema); /* wait for cmd_thread to run */ > -- > 1.9.1 > > -- > You received this message because you are subscribed to the Google Groups "outreachy-kernel" group. > To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com. > To post to this group, send email to outreachy-kernel@googlegroups.com. > To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/94120b866c10e83ec66c8b96522ae7d265d254cc.1505052882.git.harshasharmaiitr%40gmail.com. > For more options, visit https://groups.google.com/d/optout. >