Changes in / [151293d:49ce810] in mainline


Ignore:
Location:
uspace
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkbd/main.c

    r151293d r49ce810  
    212212        }
    213213       
    214         char *devpath = argv[1];
    215         //const char *devpath = "/hw/pci0/00:06.0/ohci-rh/usb00_a2/HID1/hid";
     214        //char *devpath = argv[1];
     215        const char *devpath = "/hw/pci0/00:06.0/ohci-rh/usb00_a2/HID1/hid";
    216216       
    217217        int rc;
     
    297297                }
    298298               
    299                 async_usleep(10000);
     299                async_usleep(100000);
    300300        }
    301301       
  • uspace/drv/ohci/hc.c

    r151293d r49ce810  
    343343{
    344344        assert(instance);
     345        usb_log_debug("OHCI(%p) interrupt: %x.\n", instance, status);
    345346        if ((status & ~I_SF) == 0) /* ignore sof status */
    346347                return;
    347         usb_log_debug2("OHCI(%p) interrupt: %x.\n", instance, status);
    348348        if (status & I_RHSC)
    349349                rh_interrupt(&instance->rh);
  • uspace/drv/uhci-hcd/uhci.c

    r151293d r49ce810  
    6161} uhci_t;
    6262
    63 static inline uhci_t * dev_to_uhci(const ddf_dev_t *dev)
     63static inline uhci_t * dev_to_uhci(ddf_dev_t *dev)
    6464{
    6565        assert(dev);
     
    7777{
    7878        assert(dev);
    79         uhci_t *uhci = dev_to_uhci(dev);
     79        uhci_t *uhci = dev->driver_data;
     80        assert(uhci);
    8081        hc_t *hc = &uhci->hc;
    81         const uint16_t status = IPC_GET_ARG1(*call);
     82        uint16_t status = IPC_GET_ARG1(*call);
    8283        assert(hc);
    8384        hc_interrupt(hc, status);
    8485}
    85 /*----------------------------------------------------------------------------*/
    86 /** Operations supported by the HC driver */
    87 static ddf_dev_ops_t hc_ops = {
    88         .interfaces[USBHC_DEV_IFACE] = &hc_iface, /* see iface.h/c */
    89 };
    9086/*----------------------------------------------------------------------------*/
    9187/** Get address of the device identified by handle.
     
    119115 * @return Error code.
    120116 */
    121 static int usb_iface_get_hc_handle(ddf_fun_t *fun, devman_handle_t *handle)
     117static int usb_iface_get_hc_handle(
     118    ddf_fun_t *fun, devman_handle_t *handle)
    122119{
    123120        assert(fun);
     
    134131        .get_hc_handle = usb_iface_get_hc_handle,
    135132        .get_address = usb_iface_get_address
     133};
     134/*----------------------------------------------------------------------------*/
     135/** Operations supported by the HC driver */
     136static ddf_dev_ops_t hc_ops = {
     137        .interfaces[USBHC_DEV_IFACE] = &hc_iface, /* see iface.h/c */
    136138};
    137139/*----------------------------------------------------------------------------*/
  • uspace/drv/usbhid/mouse/mousedev.c

    r151293d r49ce810  
    234234       
    235235        if (mouse_dev->mouse_phone < 0) {
    236                 usb_log_warning(NAME " No console phone.\n");
    237                 return true;
     236                usb_log_error(NAME " No console phone.\n");
     237                return false;   // ??
    238238        }
    239239
  • uspace/lib/drv/include/remote_pci.h

    r151293d r49ce810  
    3636#define LIBDRV_REMOTE_PCI_H_
    3737
    38 extern remote_iface_t remote_pci_iface;
     38remote_iface_t remote_pci_iface;
    3939
    4040#endif
  • uspace/lib/drv/include/remote_usb.h

    r151293d r49ce810  
    3636#define LIBDRV_REMOTE_USB_H_
    3737
    38 extern remote_iface_t remote_usb_iface;
     38remote_iface_t remote_usb_iface;
    3939
    4040#endif
  • uspace/lib/drv/include/remote_usbhc.h

    r151293d r49ce810  
    3636#define LIBDRV_REMOTE_USBHC_H_
    3737
    38 extern remote_iface_t remote_usbhc_iface;
     38remote_iface_t remote_usbhc_iface;
    3939
    4040#endif
Note: See TracChangeset for help on using the changeset viewer.