Re: [PATCH net-next v7 8/9] ethtool: cmis_fw_update: add a layer for supporting firmware update using CDB
From: Andrew Lunn <andrew@lunn.ch>
Date: 2024-06-24 19:57:25
Also in:
linux-doc, lkml
From: Andrew Lunn <andrew@lunn.ch>
Date: 2024-06-24 19:57:25
Also in:
linux-doc, lkml
+static int cmis_fw_update_reset(struct net_device *dev)
+{
+ __u32 reset_data = ETH_RESET_PHY;
+
+ return dev->ethtool_ops->reset(dev, &reset_data);
Is there a test somewhere that this op is actually implemented?
Maybe the next patch.
Andrew