Changeset 0eddb76 in mainline
- Timestamp:
- 2010-11-24T22:10:25Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 56b962d
- Parents:
- 0b749a3
- Location:
- uspace
- Files:
-
- 3 edited
- 9 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/virtusbkbd/Makefile
r0b749a3 r0eddb76 33 33 34 34 LIBS = $(LIBUSB_PREFIX)/libusb.a $(LIBUSBVIRT_PREFIX)/libusbvirt.a 35 EXTRA_CFLAGS = -I$(LIBUSB_PREFIX)/include -I$(LIB _PREFIX)35 EXTRA_CFLAGS = -I$(LIBUSB_PREFIX)/include -I$(LIBUSBVIRT_PREFIX)/include 36 36 37 37 SOURCES = \ -
uspace/drv/vhc/Makefile
r0b749a3 r0eddb76 33 33 $(LIBDRV_PREFIX)/libdrv.a 34 34 EXTRA_CFLAGS += \ 35 -I$(LIB _PREFIX)\35 -I$(LIBUSBVIRT_PREFIX)/include \ 36 36 -I$(LIBUSB_PREFIX)/include \ 37 37 -I$(LIBDRV_PREFIX)/include -
uspace/lib/usbvirt/Makefile
r0b749a3 r0eddb76 31 31 32 32 LIBS = $(LIBUSB_PREFIX)/libusb.a 33 EXTRA_CFLAGS = -I$(LIBUSB_PREFIX)/include 33 EXTRA_CFLAGS = -I$(LIBUSB_PREFIX)/include -Iinclude 34 34 35 35 SOURCES = \ 36 callback.c \37 ctrlpipe.c \38 debug.c \39 main.c \40 s tdreq.c \41 transaction.c36 src/callback.c \ 37 src/ctrlpipe.c \ 38 src/debug.c \ 39 src/main.c \ 40 src/stdreq.c \ 41 src/transaction.c 42 42 43 43 include $(USPACE_PREFIX)/Makefile.common -
uspace/lib/usbvirt/src/callback.c
r0b749a3 r0eddb76 40 40 #include <mem.h> 41 41 42 #include "hub.h"43 #include "device.h"44 42 #include "private.h" 45 43 -
uspace/lib/usbvirt/src/debug.c
r0b749a3 r0eddb76 36 36 #include <bool.h> 37 37 38 #include "device.h"39 38 #include "private.h" 40 39 -
uspace/lib/usbvirt/src/main.c
r0b749a3 r0eddb76 39 39 #include <assert.h> 40 40 41 #include "hub.h"42 #include "device.h"43 41 #include "private.h" 44 42 … … 183 181 } 184 182 185 /** Create necessary phones for com unication with virtual HCD.183 /** Create necessary phones for communication with virtual HCD. 186 184 * This function wraps following calls: 187 * -# open <code>/dev/devices/\\vhc for reading185 * -# open <code>/dev/devices/\\vhc</code> for reading 188 186 * -# access phone of file opened in previous step 189 187 * -# create callback through just opened phone … … 193 191 * @warning This function is wrapper for several actions and therefore 194 192 * it is not possible - in case of error - to determine at which point 195 * error occured. 196 * 197 * @param hcd_path HCD identification under devfs 198 * (without <code>/dev/usb/</code>). 193 * error occurred. 194 * 199 195 * @param dev Device to connect. 200 196 * @return EOK on success or error code from errno.h. -
uspace/lib/usbvirt/src/private.h
r0b749a3 r0eddb76 36 36 #define LIBUSBVIRT_PRIVATE_H_ 37 37 38 #include "device.h"39 #include "hub.h"38 #include <usbvirt/device.h> 39 #include <usbvirt/hub.h> 40 40 41 41 -
uspace/lib/usbvirt/src/transaction.c
r0b749a3 r0eddb76 37 37 #include <mem.h> 38 38 39 #include "hub.h"40 39 #include "private.h" 41 40
Note:
See TracChangeset
for help on using the changeset viewer.