diff options
| author | Wayen.Yan <win847@gmail.com> | 2026-06-13 03:41:16 +0300 |
|---|---|---|
| committer | Jakub Kicinski <kuba@kernel.org> | 2026-06-16 01:45:45 +0300 |
| commit | a061dfb063fa03ed09cf21145ffff247cf94721a (patch) | |
| tree | 308233ddce2e55d5229104517b9ebd1b477a4c55 | |
| parent | 05173fa30add3787e7ab2e735c4ee00431994259 (diff) | |
| download | linux-a061dfb063fa03ed09cf21145ffff247cf94721a.tar.xz | |
net: airoha: Fix typos in comments and Kconfig
Fix several typos found during code review:
- Kconfig: "Aiorha" -> "Airoha" in NET_AIROHA_FLOW_STATS help text
- Comment: "CMD1" -> "CDM1" (Central DMA, not Command)
- Comments: "GMD1/2/3/4" -> "GDM1/2/3/4" (Gigabit DMA, not GMD)
These are pure comment and documentation fixes with no functional impact.
Signed-off-by: Wayen.Yan <win847@gmail.com>
Acked-by: Lorenzo Bianconi <lorenzo@kernel.org>
Link: https://patch.msgid.link/6a2ca74a.c5b1db4e.21a698.01e7@mx.google.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
| -rw-r--r-- | drivers/net/ethernet/airoha/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/net/ethernet/airoha/airoha_eth.c | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/drivers/net/ethernet/airoha/Kconfig b/drivers/net/ethernet/airoha/Kconfig index ad3ce501e7a5..1f6640a15fc9 100644 --- a/drivers/net/ethernet/airoha/Kconfig +++ b/drivers/net/ethernet/airoha/Kconfig @@ -29,6 +29,6 @@ config NET_AIROHA_FLOW_STATS bool "Airoha flow stats" depends on NET_AIROHA && NET_AIROHA_NPU help - Enable Aiorha flowtable statistic counters. + Enable Airoha flowtable statistic counters. endif #NET_VENDOR_AIROHA diff --git a/drivers/net/ethernet/airoha/airoha_eth.c b/drivers/net/ethernet/airoha/airoha_eth.c index 5f1a118875fb..25a698342300 100644 --- a/drivers/net/ethernet/airoha/airoha_eth.c +++ b/drivers/net/ethernet/airoha/airoha_eth.c @@ -344,18 +344,18 @@ static void airoha_fe_pse_ports_init(struct airoha_eth *eth) FIELD_PREP(PSE_ALLRSV_MASK, all_rsv)); } - /* CMD1 */ + /* CDM1 */ for (q = 0; q < pse_port_num_queues[FE_PSE_PORT_CDM1]; q++) airoha_fe_set_pse_oq_rsv(eth, FE_PSE_PORT_CDM1, q, PSE_QUEUE_RSV_PAGES); - /* GMD1 */ + /* GDM1 */ for (q = 0; q < pse_port_num_queues[FE_PSE_PORT_GDM1]; q++) airoha_fe_set_pse_oq_rsv(eth, FE_PSE_PORT_GDM1, q, PSE_QUEUE_RSV_PAGES); - /* GMD2 */ + /* GDM2 */ for (q = 6; q < pse_port_num_queues[FE_PSE_PORT_GDM2]; q++) airoha_fe_set_pse_oq_rsv(eth, FE_PSE_PORT_GDM2, q, 0); - /* GMD3 */ + /* GDM3 */ for (q = 0; q < pse_port_num_queues[FE_PSE_PORT_GDM3]; q++) airoha_fe_set_pse_oq_rsv(eth, FE_PSE_PORT_GDM3, q, PSE_QUEUE_RSV_PAGES); @@ -390,7 +390,7 @@ static void airoha_fe_pse_ports_init(struct airoha_eth *eth) q, 0); } } - /* GMD4 */ + /* GDM4 */ for (q = 0; q < pse_port_num_queues[FE_PSE_PORT_GDM4]; q++) airoha_fe_set_pse_oq_rsv(eth, FE_PSE_PORT_GDM4, q, PSE_QUEUE_RSV_PAGES); |
