From patchwork Sun Jan 8 01:30:13 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Brown X-Patchwork-Id: 640547 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7C458C54EBC for ; Sun, 8 Jan 2023 01:31:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231822AbjAHBa6 (ORCPT ); Sat, 7 Jan 2023 20:30:58 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47494 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230205AbjAHBaz (ORCPT ); Sat, 7 Jan 2023 20:30:55 -0500 Received: from mail-pf1-x42d.google.com (mail-pf1-x42d.google.com [IPv6:2607:f8b0:4864:20::42d]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A97CB35921 for ; Sat, 7 Jan 2023 17:30:54 -0800 (PST) Received: by mail-pf1-x42d.google.com with SMTP id s3so1222166pfd.12 for ; Sat, 07 Jan 2023 17:30:54 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=schmorgal.com; s=google; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=vSiLXb9WJcajlY3pp2A6uRr9twRUEMwHYlZPISHDuv0=; b=Fe/zwNAMNgjbbOPzhmtFZNyLrxouNqQy0oXAMZ7cwS5nexp9omCvH8z+/YeBSW4sqd 8BqLE46ad32EU9xrFTP6nwTEMxfZLgWVDoR9KKxKgOlrZWc20SlgMHRBh2xlOenR/95c TREYtyflWCBHqAPIfS71u7CHqSTVkhs1PUM60= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=vSiLXb9WJcajlY3pp2A6uRr9twRUEMwHYlZPISHDuv0=; b=u1//bLxf5BIY9/p34vmXluTVX+ZR0PnHhbxT1r9MLgFz15OCUfTK12ncQImepqehbW 2CKBmKBB+DCsR6OrBCbJD05FVRMVyCt166wVinguY5jMoYbcOYRoeuVKGXL6Wcq4w1fv JVJYk5ycb2P/tfuyDCCSXPelRN70+6FVIaXJMLkoLDfiihJvrfyRQqcejM1M6bDHskwC QEa86yu00NhBlpexJjCpPxIRe22gggDbqIcE5RGWmOy/FOk5cY0S7+LLGbWmWt/RHNzM wvF8EfdG+CbV4duGzVGTRDayZR20tK0+WjQtzdNV1P8BFFpY+3CoF19+WoBxlXIrYdcs ZI8g== X-Gm-Message-State: AFqh2krJ1TTAMFCN+jHXnDSoiuL10fl4x67xA7Rg/Zxe4dn1p+Md0h6I 9D3tfTXef1oGotxsPxD5a9ceGw== X-Google-Smtp-Source: AMrXdXvpcdk77TT8XagZXpCHsOGivfKhMtZKjvxVygLPtMDMC+KtL3QUm6JlsOicE/Yc7+8TgSPZhw== X-Received: by 2002:a62:ea01:0:b0:582:bbc7:c61e with SMTP id t1-20020a62ea01000000b00582bbc7c61emr15686779pfh.11.1673141454073; Sat, 07 Jan 2023 17:30:54 -0800 (PST) Received: from doug-ryzen-5700G.. ([192.183.212.197]) by smtp.gmail.com with ESMTPSA id x14-20020aa79a4e000000b005811c421e6csm3323714pfj.162.2023.01.07.17.30.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 07 Jan 2023 17:30:53 -0800 (PST) From: Doug Brown To: Dan Williams , Kalle Valo , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: libertas-dev@lists.infradead.org, linux-wireless@vger.kernel.org, netdev@vger.kernel.org, Doug Brown Subject: [PATCH v2 1/4] wifi: libertas: fix capitalization in mrvl_ie_data struct Date: Sat, 7 Jan 2023 17:30:13 -0800 Message-Id: <20230108013016.222494-2-doug@schmorgal.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230108013016.222494-1-doug@schmorgal.com> References: <20230108013016.222494-1-doug@schmorgal.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org This struct is currently unused, but it will be used in future patches. Fix the code style to not use camel case. Signed-off-by: Doug Brown --- drivers/net/wireless/marvell/libertas/types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/wireless/marvell/libertas/types.h b/drivers/net/wireless/marvell/libertas/types.h index cd4ceb6f885d..398e3272e85f 100644 --- a/drivers/net/wireless/marvell/libertas/types.h +++ b/drivers/net/wireless/marvell/libertas/types.h @@ -105,7 +105,7 @@ struct mrvl_ie_header { struct mrvl_ie_data { struct mrvl_ie_header header; - u8 Data[1]; + u8 data[1]; } __packed; struct mrvl_ie_rates_param_set {