diff options
| author | Tom Rini <[email protected]> | 2026-07-08 13:42:17 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-07-08 13:42:17 -0600 |
| commit | c991faf4f7a010cae56a9065b69fc23b6ca9ddf4 (patch) | |
| tree | 7f9e6b7f7eaff6e232aee9e042faac82635e2a0d /drivers/net | |
| parent | 913fedc816570c07bfc7f9c4046dc2a3a55e4099 (diff) | |
| parent | c56c7298c42b06043aa3e9ae5bafd021bf1bac4c (diff) | |
Merge patch series "pinctrl: add support of Airoha SoCs"
Mikhail Kshevetskiy <[email protected]> says:
This patch series add pin controller and gpio driver support for EN7523/
AN7581/AN7583 SoCs. The driver based on official linux airoha pinctrl
and gpio driver with Matheus Sampaio Queiroga changes.
The original Matheus Sampaio Queiroga driver can be taken from the repo:
https://sirherobrine23.com.br/airoha_en7523/kernel/src/branch/airoha_en7523_pinctrl
Additionally in the EN7523 case the patches removes existing gpio dts
nodes and replaces them with pinctrl node. It should not be very
dangerous, because:
* No official EN7523 gpio support present in U-Boot
* Legacy Linux EN7523 GPIO driver is mostly abandoned
* The same driver is planned for upstream linux/openwrt
This patchset includes bitfield.h patches created for Linux kernel by
Geert Uytterhoeven. It suits U-Boot fine. I preserve original author and
original commit messages. Please note me, if there is a better way.
The patches were tested on EN7523/AN7581/AN7583 boards.
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'drivers/net')
| -rw-r--r-- | drivers/net/hifemac.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/hifemac.c b/drivers/net/hifemac.c index 62182f922f8..7dda8cb8815 100644 --- a/drivers/net/hifemac.c +++ b/drivers/net/hifemac.c @@ -401,9 +401,6 @@ static void hisi_femac_get_strings(struct udevice *dev, u8 *data) strcpy(data + i * ETH_GSTRING_LEN, hisi_femac_stats_table[i].name); } -/* Non-constant mask variant of FIELD_GET/FIELD_PREP */ -#define field_get(_mask, _reg) (((_reg) & (_mask)) >> (ffs(_mask) - 1)) - static void hisi_femac_get_stats(struct udevice *dev, u64 *data) { int i; |
