Re: [PATCH net-next 01/13] octeontx2-af: npc: cn20k: Index management
From: Andrew Lunn <andrew@lunn.ch>
Date: 2026-01-05 15:15:16
Also in:
lkml
From: Andrew Lunn <andrew@lunn.ch>
Date: 2026-01-05 15:15:16
Also in:
lkml
+static void npc_subbank_srch_order_dbgfs_usage(void)
+{
+ pr_err("Usage: echo \"[0]=[8],[1]=7,[2]=30,...[31]=0\" > <debugfs>/subbank_srch_order\n");
Isn't checkpatch giving you warnings about pr_err(). It wants you to
use something like netdev_err()? This is a network driver, so you
should have a netdev structure.
Andrew