.tx_fixup = rndis_tx_fixup,
};
+static const struct driver_info rndis_info_lowpower = {
+ .description = "RNDIS device",
+ .flags = FLAG_ETHER | FLAG_POINTTOPOINT | FLAG_FRAMING_RN | FLAG_NO_SETINT,
+ .bind = rndis_bind,
+ .unbind = rndis_unbind,
+ .status = rndis_status,
+ .rx_fixup = rndis_rx_fixup,
+ .tx_fixup = rndis_tx_fixup,
+ .manage_power = usbnet_manage_power,
+};
+
/*-------------------------------------------------------------------------*/
static const struct usb_device_id products [] = {
/* Telit Cinterion LE310X1 RNDIS */
USB_DEVICE_AND_INTERFACE_INFO(0x1bc7, 0x7030,
USB_CLASS_WIRELESS_CONTROLLER, 1, 3),
- .driver_info = (unsigned long)&rndis_info,
+ .driver_info = (unsigned long)&rndis_info_lowpower,
}, {
/* "ActiveSync" is an undocumented variant of RNDIS, used in WM5 */
USB_INTERFACE_INFO(USB_CLASS_MISC, 1, 1),