automatic DPDK test reports
 help / color / mirror / Atom feed
From: checkpatch@dpdk.org
To: test-report@dpdk.org
Cc: Howard Wang <howard_wang@realsil.com.cn>
Subject: |WARNING| pw148194 [PATCH v6 09/17] net/r8169: add support for hw initialization
Date: Fri,  8 Nov 2024 13:15:16 +0100 (CET)	[thread overview]
Message-ID: <20241108121516.B81B3123157@dpdk.org> (raw)
In-Reply-To: <20241108121123.248797-10-howard_wang@realsil.com.cn>

Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/148194

_coding style issues_


WARNING:TYPO_SPELLING: 'stdio' may be misspelled - perhaps 'studio'?
#175: FILE: drivers/net/r8169/r8169_dash.c:5:
+#include <stdio.h>

CHECK:CAMELCASE: Avoid CamelCase: <AllowAccessDashOcp>
#233: FILE: drivers/net/r8169/r8169_dash.c:63:
+	if (!hw->AllowAccessDashOcp)

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppDashVer>
#279: FILE: drivers/net/r8169/r8169_dash.h:17:
+#define HW_DASH_SUPPORT_DASH(_M)        ((_M)->HwSuppDashVer > 0)

CHECK:MACRO_ARG_REUSE: Macro argument reuse '_M' - possible side-effects?
#285: FILE: drivers/net/r8169/r8169_dash.h:23:
+#define HW_DASH_SUPPORT_GET_FIRMWARE_VERSION(_M) (HW_DASH_SUPPORT_TYPE_2(_M) || \
+						  HW_DASH_SUPPORT_TYPE_3(_M) || \
+						  HW_DASH_SUPPORT_TYPE_4(_M))

CHECK:CAMELCASE: Avoid CamelCase: <HwIcVerUnknown>
#431: FILE: drivers/net/r8169/r8169_ethdev.h:40:
+	u8  HwIcVerUnknown;

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppNowIsOobVer>
#452: FILE: drivers/net/r8169/r8169_ethdev.h:67:
+	u8  HwSuppNowIsOobVer;

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppTxNoCloseVer>
#458: FILE: drivers/net/r8169/r8169_ethdev.h:72:
+	u8  HwSuppTxNoCloseVer;

CHECK:CAMELCASE: Avoid CamelCase: <EnableTxNoClose>
#459: FILE: drivers/net/r8169/r8169_ethdev.h:73:
+	u8  EnableTxNoClose;

CHECK:CAMELCASE: Avoid CamelCase: <MaxTxDescPtrMask>
#462: FILE: drivers/net/r8169/r8169_ethdev.h:76:
+	u32 MaxTxDescPtrMask;

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppMaxPhyLinkSpeed>
#537: FILE: drivers/net/r8169/r8169_hw.c:976:
+	speed = RTE_MIN(speed, hw->HwSuppMaxPhyLinkSpeed);

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppOcpChannelVer>
#590: FILE: drivers/net/r8169/r8169_hw.c:1029:
+			hw->HwSuppOcpChannelVer = 2;

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppCheckPhyDisableModeVer>
#646: FILE: drivers/net/r8169/r8169_hw.c:1085:
+		hw->HwSuppCheckPhyDisableModeVer = 3;

CHECK:CAMELCASE: Avoid CamelCase: <NotWrRamCodeToMicroP>
#752: FILE: drivers/net/r8169/r8169_hw.c:1191:
+		hw->NotWrRamCodeToMicroP = TRUE;

CHECK:CAMELCASE: Avoid CamelCase: <NotWrMcuPatchCode>
#753: FILE: drivers/net/r8169/r8169_hw.c:1192:
+		hw->NotWrMcuPatchCode = TRUE;

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppMacMcuVer>
#759: FILE: drivers/net/r8169/r8169_hw.c:1198:
+		hw->HwSuppMacMcuVer = 2;

CHECK:CAMELCASE: Avoid CamelCase: <MacMcuPageSize>
#766: FILE: drivers/net/r8169/r8169_hw.c:1205:
+		hw->MacMcuPageSize = RTL_MAC_MCU_PAGE_SIZE;

CHECK:CAMELCASE: Avoid CamelCase: <RequirePhyMdiSwapPatch>
#775: FILE: drivers/net/r8169/r8169_hw.c:1214:
+			hw->RequirePhyMdiSwapPatch = TRUE;

CHECK:CAMELCASE: Avoid CamelCase: <HwSuppIntMitiVer>
#783: FILE: drivers/net/r8169/r8169_hw.c:1222:
+		hw->HwSuppIntMitiVer = 3;

CHECK:CAMELCASE: Avoid CamelCase: <MCUCmd_reg>
#828: FILE: drivers/net/r8169/r8169_hw.c:1267:
+		RTL_W8(hw, MCUCmd_reg, RTL_R8(hw, MCUCmd_reg) & ~Now_is_oob);

CHECK:CAMELCASE: Avoid CamelCase: <Now_is_oob>
#828: FILE: drivers/net/r8169/r8169_hw.c:1267:
+		RTL_W8(hw, MCUCmd_reg, RTL_R8(hw, MCUCmd_reg) & ~Now_is_oob);

CHECK:CAMELCASE: Avoid CamelCase: <TxConfig>
#939: FILE: drivers/net/r8169/r8169_hw.c:1378:
+	val32 = RTL_R32(hw, TxConfig);

total: 0 errors, 1 warnings, 20 checks, 1007 lines checked

           reply	other threads:[~2024-11-08 12:15 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <20241108121123.248797-10-howard_wang@realsil.com.cn>]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241108121516.B81B3123157@dpdk.org \
    --to=checkpatch@dpdk.org \
    --cc=howard_wang@realsil.com.cn \
    --cc=test-report@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).