Changeset e27595b in mainline for uspace/app/virtusbkbd/virtusbkbd.c


Ignore:
Timestamp:
2010-11-20T13:04:15Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0e126be7
Parents:
7034be15
Message:

Virtual USB devices can connect to VHC

Fixed and bypassed problems introduced by using DDF.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/virtusbkbd/virtusbkbd.c

    r7034be15 re27595b  
    5858#define NAME "virt-usb-kbd"
    5959
    60 #define DEV_HCD_NAME "hcd-virt-dev"
    6160
    6261#define __QUOTEME(x) #x
     
    216215       
    217216       
    218         int rc = usbvirt_connect(&keyboard_dev, DEV_HCD_NAME);
     217        int rc = usbvirt_connect(&keyboard_dev);
    219218        if (rc != EOK) {
    220                 printf("%s: Unable to start comunication with VHCD at usb://%s (%s).\n",
    221                     NAME, DEV_HCD_NAME, str_error(rc));
     219                printf("%s: Unable to start communication with VHCD (%s).\n",
     220                    NAME, str_error(rc));
    222221                return rc;
    223222        }
Note: See TracChangeset for help on using the changeset viewer.