Am Dienstag, 6. Februar 2007 21:39 schrieb Frédéric RISS:
> Hi,
> 
> Is there any way to debug the remote wakeup functionality of usb
> devices? I'm trying to wake my MacMini up using the built-in IR
> Receiver. This device is seen as an raw HID device.

static int hub_port_suspend:

        if (udev->do_remote_wakeup) {
                status = usb_control_msg(udev, usb_sndctrlpipe(udev, 0),
                                USB_REQ_SET_FEATURE, USB_RECIP_DEVICE,
                                USB_DEVICE_REMOTE_WAKEUP, 0,
                                NULL, 0,
                                USB_CTRL_SET_TIMEOUT);
                if (status)
                        dev_dbg(&udev->dev,
                                "won't remote wakeup, status %d\n",
                                status);
        }

Having the capability is not enough. Per default it is switched off.
Devices without drivers can't do remote wakeup. Which driver is this device
bound to?

        Regards
                Oliver

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
linux-usb-devel@lists.sourceforge.net
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to