Skip to content

Commit

Permalink
NIC: fix module information for Mana
Browse files Browse the repository at this point in the history
There are no mana_en driver exists in upstream. The mana driver could be
omitted since modprobe will remove it anyway.

Signed-off-by: Konstantin Olshanov <[email protected]>
  • Loading branch information
Konstantin Olshanov committed Oct 25, 2024
1 parent 22c0a4c commit 2ba62ff
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions lisa/nic.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,7 @@ class ModuleInformation:
_device_module_map = {
"mlx5_core": ModuleInformation(["mlx5_ib"], "CONFIG_MLX5_CORE"),
"mlx4_core": ModuleInformation(["mlx4_en", "mlx4_ib"], "CONFIG_MLX4_CORE"),
"mana": ModuleInformation(
["mana", "mana_en", "mana_ib"], "CONFIG_MICROSOFT_MANA"
),
"mana": ModuleInformation(["mana_ib"], "CONFIG_MICROSOFT_MANA"),
}

def __init__(self, node: "Node"):
Expand Down

0 comments on commit 2ba62ff

Please sign in to comment.