Changes in / [993a1e1:0c3beeb] in mainline


Ignore:
Files:
6 added
34 deleted
8 edited

Legend:

Unmodified
Added
Removed
  • .bzrignore

    r993a1e1 r0c3beeb  
    8484./uspace/drv/test1/test1
    8585./uspace/drv/test2/test2
    86 ./uspace/drv/uhci-hcd/uhci-hcd
    87 ./uspace/drv/uhci-rhd/uhci-rhd
     86./uspace/drv/uhci/uhci
    8887./uspace/drv/usbhub/usbhub
    8988./uspace/drv/usbhid/usbhid
  • boot/arch/amd64/Makefile.inc

    r993a1e1 r0c3beeb  
    4343        isa \
    4444        ns8250 \
    45         uhci-hcd \
    46         uhci-rhd \
     45        uhci \
    4746        usbhub \
    4847        usbhid \
  • uspace/Makefile

    r993a1e1 r0c3beeb  
    117117                srv/hw/irc/apic \
    118118                srv/hw/irc/i8259 \
    119                 drv/uhci-hcd \
    120                 drv/uhci-rhd \
     119                drv/uhci \
    121120                drv/usbhid \
    122121                drv/usbhub \
     
    132131                srv/hw/irc/apic \
    133132                srv/hw/irc/i8259 \
    134                 drv/uhci-hcd \
    135                 drv/uhci-rhd \
     133                drv/uhci \
    136134                drv/usbhid \
    137135                drv/usbhub \
  • uspace/app/bdsh/cmds/modules/cat/cat.c

    r993a1e1 r0c3beeb  
    144144                        return CMD_SUCCESS;
    145145                case 'H':
    146                         printf("%s", cat_oops);
     146                        printf(cat_oops);
    147147                        return CMD_FAILURE;
    148148                case 't':
    149                         printf("%s", cat_oops);
     149                        printf(cat_oops);
    150150                        return CMD_FAILURE;
    151151                case 'b':
    152                         printf("%s", cat_oops);
     152                        printf(cat_oops);
    153153                        break;
    154154                case 'm':
    155                         printf("%s", cat_oops);
     155                        printf(cat_oops);
    156156                        return CMD_FAILURE;
    157157                }
  • uspace/app/bdsh/cmds/modules/rm/rm.c

    r993a1e1 r0c3beeb  
    227227                }
    228228                memset(buff, 0, sizeof(buff));
    229                 snprintf(buff, len, "%s", argv[i]);
     229                snprintf(buff, len, argv[i]);
    230230
    231231                scope = rm_scope(buff);
  • uspace/drv/rootvirt/devices.def

    r993a1e1 r0c3beeb  
    2323#endif
    2424/* Virtual USB host controller. */
    25 /*
    2625{
    2726        .name = "usbhc",
    2827        .match_id = "usb&hc=vhc"
    2928},
    30 */
  • uspace/lib/usb/include/usb/devreq.h

    r993a1e1 r0c3beeb  
    7070        /** Main parameter to the request. */
    7171        union {
    72                 uint16_t value;
    7372                /* FIXME: add #ifdefs according to host endianess */
    7473                struct {
     
    7675                        uint8_t value_high;
    7776                };
     77                uint16_t value;
    7878        };
    7979        /** Auxiliary parameter to the request.
  • uspace/lib/usb/src/addrkeep.c

    r993a1e1 r0c3beeb  
    3333 * @brief Address keeping.
    3434 */
    35 #include <usb/addrkeep.h>
     35#include <usb/hcd.h>
    3636#include <errno.h>
    3737#include <assert.h>
Note: See TracChangeset for help on using the changeset viewer.