]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: airoha: Fix typos in comments and Kconfig
authorWayen.Yan <win847@gmail.com>
Sat, 13 Jun 2026 00:41:16 +0000 (08:41 +0800)
committerJakub Kicinski <kuba@kernel.org>
Mon, 15 Jun 2026 22:45:45 +0000 (15:45 -0700)
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>
drivers/net/ethernet/airoha/Kconfig
drivers/net/ethernet/airoha/airoha_eth.c

index ad3ce501e7a577b839b674406900ddaea88a9b83..1f6640a15fc9477441f37422ebcbd1014c39330f 100644 (file)
@@ -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
index 5f1a118875fbefece4fa0353a49c0f1a837b1fc0..25a698342300b982e7da7e0185f2558fc4dd95b1 100644 (file)
@@ -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);