From: Michael Brown Date: Tue, 15 Apr 2025 13:02:14 +0000 (+0100) Subject: [netdevice] Add missing bus type identifier for devicetree devices X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c406ec0b1bb2e8b858bdb43e2922a7adee3917e;p=thirdparty%2Fipxe.git [netdevice] Add missing bus type identifier for devicetree devices Signed-off-by: Michael Brown --- diff --git a/src/net/netdev_settings.c b/src/net/netdev_settings.c index 080b6d2a5..9432dc2fa 100644 --- a/src/net/netdev_settings.c +++ b/src/net/netdev_settings.c @@ -169,6 +169,7 @@ static int netdev_fetch_bustype ( struct net_device *netdev, void *data, [BUS_TYPE_XEN] = "XEN", [BUS_TYPE_HV] = "HV", [BUS_TYPE_USB] = "USB", + [BUS_TYPE_DT] = "DT", }; struct device_description *desc = &netdev->dev->desc; const char *bustype;