Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752279AbdLJEjH (ORCPT ); Sat, 9 Dec 2017 23:39:07 -0500 Received: from mail-pl0-f68.google.com ([209.85.160.68]:33603 "EHLO mail-pl0-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751746AbdLJEip (ORCPT ); Sat, 9 Dec 2017 23:38:45 -0500 X-Google-Smtp-Source: ACJfBou8rEDpY6UW/7r9sFJ03NkPueWg1+zOhRutQOO1fnqavp2kn6Zpwap30itflht2KwUNwPUA0w== From: Neil Singh To: Larry Finger , Florian Schilhabel , Greg Kroah-Hartman Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, driverdev-devel@linuxdriverproject.org Subject: [PATCH v3 2/2] staging: rtl8712: Cleanup codestyle, change spaces to tabs Date: Sun, 10 Dec 2017 11:38:35 +0700 Message-Id: <1512880715-18060-3-git-send-email-neil2468@gmail.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1512880715-18060-1-git-send-email-neil2468@gmail.com> References: <1512880715-18060-1-git-send-email-neil2468@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1105 Lines: 30 Cleanup below checkpatch issues: ERROR:CODE_INDENT: code indent should use tabs where possible 1409: FILE: rtl871x_security.c:1409: + from_timer(padapter, t, securitypriv.tkip_timer);$ WARNING:LEADING_SPACE: please, no spaces at the start of a line 1409: FILE: rtl871x_security.c:1409: + from_timer(padapter, t, securitypriv.tkip_timer);$ Signed-off-by: Neil Singh --- drivers/staging/rtl8712/rtl871x_security.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/rtl8712/rtl871x_security.c b/drivers/staging/rtl8712/rtl871x_security.c index 630f18f..f459152 100644 --- a/drivers/staging/rtl8712/rtl871x_security.c +++ b/drivers/staging/rtl8712/rtl871x_security.c @@ -1406,7 +1406,7 @@ u32 r8712_aes_decrypt(struct _adapter *padapter, u8 *precvframe) void r8712_use_tkipkey_handler(struct timer_list *t) { struct _adapter *padapter = - from_timer(padapter, t, securitypriv.tkip_timer); + from_timer(padapter, t, securitypriv.tkip_timer); padapter->securitypriv.busetkipkey = true; } -- 2.1.4