Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S942547AbcJSPzx (ORCPT ); Wed, 19 Oct 2016 11:55:53 -0400 Received: from mail-lf0-f65.google.com ([209.85.215.65]:33934 "EHLO mail-lf0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S945776AbcJSPxE (ORCPT ); Wed, 19 Oct 2016 11:53:04 -0400 From: Sergio Paracuellos To: gregkh@linuxfoundation.org Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org Subject: [PATCH 06/12] staging: wlan-ng: avoid CamelCase: hfa384x_ChInfoResult Date: Wed, 19 Oct 2016 17:52:41 +0200 Message-Id: <1476892367-21061-12-git-send-email-sergio.paracuellos@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1476892367-21061-1-git-send-email-sergio.paracuellos@gmail.com> References: <1476892367-21061-1-git-send-email-sergio.paracuellos@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1411 Lines: 41 Replace CamelCase struct name with underscores to comply with the standard kernel coding style. Signed-off-by: Sergio Paracuellos --- drivers/staging/wlan-ng/hfa384x.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/wlan-ng/hfa384x.h b/drivers/staging/wlan-ng/hfa384x.h index 9556098..c5b5208 100644 --- a/drivers/staging/wlan-ng/hfa384x.h +++ b/drivers/staging/wlan-ng/hfa384x.h @@ -688,7 +688,7 @@ struct hfa384x_ch_info_result_sub { #define HFA384x_CHINFORESULT_BSSACTIVE BIT(0) #define HFA384x_CHINFORESULT_PCFACTIVE BIT(1) -struct hfa384x_ChInfoResult { +struct hfa384x_ch_info_result { u16 scanchannels; struct hfa384x_ch_info_result_sub result[HFA384x_CHINFORESULT_MAX]; } __packed; @@ -765,7 +765,7 @@ struct hfa384x_KeyIDChanged { struct hfa384x_comm_tallies_16 commtallies16; struct hfa384x_comm_tallies_32 commtallies32; struct hfa384x_scan_result scanresult; - struct hfa384x_ChInfoResult chinforesult; + struct hfa384x_ch_info_result chinforesult; struct hfa384x_HScanResult hscanresult; struct hfa384x_LinkStatus linkstatus; struct hfa384x_assoc_status assocstatus; @@ -1366,7 +1366,7 @@ struct hfa384x { struct { atomic_t done; u8 count; - struct hfa384x_ChInfoResult results; + struct hfa384x_ch_info_result results; } channel_info; struct hfa384x_inf_frame *scanresults; -- 1.9.1