mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
40009986ee
Issue #5264
20 lines
850 B
Diff
20 lines
850 B
Diff
Remove FLAG_LINK_INTR because otherwiese usbnet.c will set the curruent link
|
|
state to down during initialization. Currently we do not support link-state
|
|
changes for SMSC95XX because the driver uses mdio/phy/irqchip infrastructure
|
|
that is hard to enable. Therefore, the driver must be started with NIC whose
|
|
link is up.
|
|
|
|
diff --git src/linux/drivers/net/usb/smsc95xx.c src/linux/drivers/net/usb/smsc95xx.c
|
|
index 8e82184be..996b0011c 100644
|
|
--- src/linux/drivers/net/usb/smsc95xx.c
|
|
+++ src/linux/drivers/net/usb/smsc95xx.c
|
|
@@ -2012,7 +2012,7 @@ static const struct driver_info smsc95xx_info = {
|
|
.tx_fixup = smsc95xx_tx_fixup,
|
|
.status = smsc95xx_status,
|
|
.manage_power = smsc95xx_manage_power,
|
|
- .flags = FLAG_ETHER | FLAG_SEND_ZLP | FLAG_LINK_INTR,
|
|
+ .flags = FLAG_ETHER | FLAG_SEND_ZLP,
|
|
};
|
|
|
|
static const struct usb_device_id products[] = {
|