From: Renaud Barbier <renaud.barbier@ametek.com>
To: barebox@lists.infradead.org
Cc: Renaud Barbier <renaud.barbier@ametek.com>
Subject: [PATCH v3 2/4] gianfar: apply checkpatch recommendations
Date: Tue, 10 Feb 2026 12:52:23 +0000 [thread overview]
Message-ID: <20260210125225.981725-3-renaud.barbier@ametek.com> (raw)
In-Reply-To: <20260210125225.981725-1-renaud.barbier@ametek.com>
Replace camel case variables, null pointer tests and fix missing space
and logic.
Signed-off-by: Renaud Barbier <renaud.barbier@ametek.com>
---
drivers/net/gianfar.c | 19 +++++++++----------
drivers/net/gianfar.h | 4 ++--
2 files changed, 11 insertions(+), 12 deletions(-)
diff --git a/drivers/net/gianfar.c b/drivers/net/gianfar.c
index d0f606279f..a6eb3bfa01 100644
--- a/drivers/net/gianfar.c
+++ b/drivers/net/gianfar.c
@@ -16,7 +16,7 @@
#include <driver.h>
#include <command.h>
#include <errno.h>
-#include <asm/io.h>
+#include <linux/io.h>
#include <linux/phy.h>
#include <linux/err.h>
#include "gianfar.h"
@@ -77,11 +77,11 @@ static void gfar_adjust_link(struct eth_device *edev)
u32 ecntrl, maccfg2;
priv->link = edev->phydev->link;
- priv->duplexity =edev->phydev->duplex;
+ priv->duplexity = edev->phydev->duplex;
if (edev->phydev->speed == SPEED_1000)
priv->speed = 1000;
- if (edev->phydev->speed == SPEED_100)
+ else if (edev->phydev->speed == SPEED_100)
priv->speed = 100;
else
priv->speed = 10;
@@ -194,7 +194,7 @@ static int gfar_open(struct eth_device *edev)
for (ix = 0; ix < RX_BUF_CNT; ix++) {
out_be16(&priv->rxbd[ix].status, RXBD_EMPTY);
out_be16(&priv->rxbd[ix].length, 0);
- out_be32(&priv->rxbd[ix].bufPtr, (uint) priv->rx_buffer[ix]);
+ out_be32(&priv->rxbd[ix].buf, (uint)priv->rx_buffer[ix]);
}
out_be16(&priv->rxbd[RX_BUF_CNT - 1].status, RXBD_EMPTY | RXBD_WRAP);
@@ -202,7 +202,7 @@ static int gfar_open(struct eth_device *edev)
for (ix = 0; ix < TX_BUF_CNT; ix++) {
out_be16(&priv->txbd[ix].status, 0);
out_be16(&priv->txbd[ix].length, 0);
- out_be32(&priv->txbd[ix].bufPtr, 0);
+ out_be32(&priv->txbd[ix].buf, 0);
}
out_be16(&priv->txbd[TX_BUF_CNT - 1].status, TXBD_WRAP);
@@ -356,7 +356,7 @@ static int gfar_send(struct eth_device *edev, void *packet, int length)
uint16_t status;
tidx = priv->txidx;
- out_be32(&priv->txbd[tidx].bufPtr, (u32) packet);
+ out_be32(&priv->txbd[tidx].buf, (u32)packet);
out_be16(&priv->txbd[tidx].length, length);
out_be16(&priv->txbd[tidx].status,
in_be16(&priv->txbd[tidx].status) |
@@ -368,9 +368,8 @@ static int gfar_send(struct eth_device *edev, void *packet, int length)
/* Wait for buffer to be transmitted */
start = get_time_ns();
while (in_be16(&priv->txbd[tidx].status) & TXBD_READY) {
- if (is_timeout(start, 5 * MSECOND)) {
+ if (is_timeout(start, 5 * MSECOND))
break;
- }
}
status = in_be16(&priv->txbd[tidx].status);
@@ -483,7 +482,7 @@ static int gfar_probe(struct device *dev)
priv->tbiana = gfar_info->tbiana;
mdev = get_device_by_name("gfar-mdio0");
- if (mdev == NULL) {
+ if (!mdev) {
pr_err("gfar-mdio0 was not found\n");
return -ENODEV;
}
@@ -492,7 +491,7 @@ static int gfar_probe(struct device *dev)
if (priv->mdiobus_tbi != 0) {
sprintf(devname, "%s%d", "gfar-tbiphy", priv->mdiobus_tbi);
mdev = get_device_by_name(devname);
- if (mdev == NULL) {
+ if (!mdev) {
pr_err("%s was not found\n", devname);
return -ENODEV;
}
diff --git a/drivers/net/gianfar.h b/drivers/net/gianfar.h
index 8ccbbe1473..acb50b9ce3 100644
--- a/drivers/net/gianfar.h
+++ b/drivers/net/gianfar.h
@@ -187,13 +187,13 @@
struct txbd8 {
uint16_t status; /* Status Fields */
uint16_t length; /* Buffer length */
- uint32_t bufPtr; /* Buffer Pointer */
+ uint32_t buf; /* Buffer Pointer */
};
struct rxbd8 {
uint16_t status; /* Status Fields */
uint16_t length; /* Buffer Length */
- uint32_t bufPtr; /* Buffer Pointer */
+ uint32_t buf; /* Buffer Pointer */
};
/* eTSEC general control and status registers */
--
2.43.0
next prev parent reply other threads:[~2026-02-10 12:53 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-10 12:52 [PATCH v3 0/4] net: expand gianfar support to ls1021a Renaud Barbier
2026-02-10 12:52 ` [PATCH v3 1/4] net: gianfar: disable link information Renaud Barbier
2026-02-10 12:52 ` Renaud Barbier [this message]
2026-02-10 12:52 ` [PATCH v3 3/4] net:gianfar: add device tree support Renaud Barbier
2026-02-10 12:52 ` [PATCH v3 4/4] ARM: ls1021a: initial Ethernet and mdio configuration Renaud Barbier
2026-02-11 9:35 ` [PATCH v3 0/4] net: expand gianfar support to ls1021a Sascha Hauer
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=20260210125225.981725-3-renaud.barbier@ametek.com \
--to=renaud.barbier@ametek.com \
--cc=barebox@lists.infradead.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