On Tue, 04 Mar 2025 11:18:55 +0100 Kory Maincent wrote: > +/** > + * enum ethtool_pse_budget_eval_strategies - PSE budget evaluation strategies. > + * @ETHTOOL_PSE_BUDGET_EVAL_STRAT_DISABLED: Budget evaluation strategy disabled. > + * @ETHTOOL_PSE_BUDGET_EVAL_STRAT_STATIC: PSE static budget evaluation strategy. > + * Budget evaluation strategy based on the power requested during PD > + * classification. This strategy is managed by the PSE core. > + * @ETHTOOL_PSE_BUDGET_EVAL_STRAT_DYNAMIC: PSE dynamic budget evaluation > + * strategy. Budget evaluation strategy based on the current consumption > + * per ports compared to the total power budget. This mode is managed by > + * the PSE controller. > + */ > + > +enum ethtool_pse_budget_eval_strategies { > + ETHTOOL_PSE_BUDGET_EVAL_STRAT_DISABLED = 1 << 0, > + ETHTOOL_PSE_BUDGET_EVAL_STRAT_STATIC = 1 << 1, > + ETHTOOL_PSE_BUDGET_EVAL_STRAT_DYNAMIC = 1 << 2, > }; Leftover? -- pw-bot: cr