All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Marek Behún" <kabel@kernel.org>
To: Joe Hershberger <joe.hershberger@ni.com>,
	Ramon Fried <rfried.dev@gmail.com>
Cc: u-boot@lists.denx.de, "Marek Behún" <marek.behun@nic.cz>,
	"Stefan Roese" <sr@denx.de>,
	"Vladimir Oltean" <vladimir.oltean@nxp.com>
Subject: [PATCH u-boot-net v4 08/14] treewide: Rename PHY_INTERFACE_MODE_COUNT to PHY_INTERFACE_MODE_MAX
Date: Thu,  7 Apr 2022 00:33:02 +0200	[thread overview]
Message-ID: <20220406223308.9833-9-kabel@kernel.org> (raw)
In-Reply-To: <20220406223308.9833-1-kabel@kernel.org>

From: Marek Behún <marek.behun@nic.cz>

Rename constant PHY_INTERFACE_MODE_COUNT to PHY_INTERFACE_MODE_MAX to
make it compatible with Linux' naming.

Signed-off-by: Marek Behún <marek.behun@nic.cz>
Reviewed-by: Stefan Roese <sr@denx.de>
Reviewed-by: Vladimir Oltean <vladimir.oltean@nxp.com>
---
 drivers/core/ofnode.c      | 2 +-
 drivers/net/phy/aquantia.c | 2 +-
 include/phy_interface.h    | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/core/ofnode.c b/drivers/core/ofnode.c
index f644a593d3..d9ccb1bad2 100644
--- a/drivers/core/ofnode.c
+++ b/drivers/core/ofnode.c
@@ -1234,7 +1234,7 @@ phy_interface_t ofnode_read_phy_mode(ofnode node)
 	if (!mode)
 		return PHY_INTERFACE_MODE_NONE;
 
-	for (i = 0; i < PHY_INTERFACE_MODE_COUNT; i++)
+	for (i = 0; i < PHY_INTERFACE_MODE_MAX; i++)
 		if (!strcmp(mode, phy_interface_strings[i]))
 			return i;
 
diff --git a/drivers/net/phy/aquantia.c b/drivers/net/phy/aquantia.c
index 83075f78c9..7e950fe0c2 100644
--- a/drivers/net/phy/aquantia.c
+++ b/drivers/net/phy/aquantia.c
@@ -305,7 +305,7 @@ struct {
 	u16 syscfg;
 	int cnt;
 	u16 start_rate;
-} aquantia_syscfg[PHY_INTERFACE_MODE_COUNT] = {
+} aquantia_syscfg[PHY_INTERFACE_MODE_MAX] = {
 	[PHY_INTERFACE_MODE_SGMII] =      {0x04b, AQUANTIA_VND1_GSYSCFG_1G,
 					   AQUANTIA_VND1_GSTART_RATE_1G},
 	[PHY_INTERFACE_MODE_2500BASEX]  = {0x144, AQUANTIA_VND1_GSYSCFG_2_5G,
diff --git a/include/phy_interface.h b/include/phy_interface.h
index f075abe9c9..494bc87e67 100644
--- a/include/phy_interface.h
+++ b/include/phy_interface.h
@@ -41,7 +41,7 @@ typedef enum {
 	PHY_INTERFACE_MODE_USXGMII,
 	PHY_INTERFACE_MODE_NONE,	/* Must be last */
 
-	PHY_INTERFACE_MODE_COUNT,
+	PHY_INTERFACE_MODE_MAX,
 } phy_interface_t;
 
 static const char * const phy_interface_strings[] = {
-- 
2.35.1


  parent reply	other threads:[~2022-04-06 22:34 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-06 22:32 [PATCH u-boot-net v4 00/14] u-boot-net refactors, fixes, cleanups Marek Behún
2022-04-06 22:32 ` [PATCH u-boot-net v4 01/14] net: mdio-uclass: fix type for phy_mode_str and phy_handle_str Marek Behún
2022-04-06 22:32 ` [PATCH u-boot-net v4 02/14] net: mdio-uclass: use ARRAY_SIZE() Marek Behún
2022-04-06 22:32 ` [PATCH u-boot-net v4 03/14] net: introduce helpers to get PHY ofnode from MAC Marek Behún
2022-04-13 21:46   ` Tom Rini
2022-04-14 15:39     ` Tom Rini
2022-04-06 22:32 ` [PATCH u-boot-net v4 04/14] net: mdio-uclass: add wrappers for read/write/reset operations Marek Behún
2022-04-06 22:32 ` [PATCH u-boot-net v4 05/14] treewide: use dm_mdio_read/write/reset() wrappers Marek Behún
2022-04-06 22:33 ` [PATCH u-boot-net v4 06/14] net: phy: fix parsing wrong property Marek Behún
2022-04-06 22:33 ` [PATCH u-boot-net v4 07/14] net: introduce helpers to get PHY interface mode from a device/ofnode Marek Behún
2022-04-06 22:33 ` Marek Behún [this message]
2022-04-06 22:33 ` [PATCH u-boot-net v4 09/14] treewide: Rename PHY_INTERFACE_MODE_NONE to PHY_INTERFACE_MODE_NA Marek Behún
2022-04-06 22:33 ` [PATCH u-boot-net v4 10/14] phy: Move PHY_INTERFACE_MODE_NA to the beginning of the enum definition Marek Behún
2022-04-06 22:33 ` [PATCH u-boot-net v4 11/14] net: phy: xilinx: Check interface type in ->config(), not ->probe() Marek Behún
2022-04-06 22:33 ` [PATCH u-boot-net v4 12/14] net: phy: use ->is_c45 instead of is_10g_interface() Marek Behún
2022-04-06 22:33 ` [PATCH u-boot-net v4 13/14] bcmgenet, sun8i_emac: Don't connect PHY two times Marek Behún
2022-04-06 22:33 ` [PATCH u-boot-net v4 14/14] net: phy: don't require PHY interface mode during PHY creation Marek Behún
2022-04-10  5:02 ` [PATCH u-boot-net v4 00/14] u-boot-net refactors, fixes, cleanups Ramon Fried

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=20220406223308.9833-9-kabel@kernel.org \
    --to=kabel@kernel.org \
    --cc=joe.hershberger@ni.com \
    --cc=marek.behun@nic.cz \
    --cc=rfried.dev@gmail.com \
    --cc=sr@denx.de \
    --cc=u-boot@lists.denx.de \
    --cc=vladimir.oltean@nxp.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.