-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Staging: USB/IP: add common functions needed
This adds the common functions needed by both the host and client side of the USB/IP code. Brian Merrell cleaned up a lot of this code and submitted it for inclusion. Greg also did a lot of cleanup. Signed-off-by: Brian G. Merrell <bgmerrell@novell.com> Cc: Takahiro Hirofuchi <hirofuchi@users.sourceforge.net> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
- Loading branch information
Takahiro Hirofuchi
authored and
Greg Kroah-Hartman
committed
Oct 10, 2008
1 parent
866b869
commit 05a1f28
Showing
8 changed files
with
1,573 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
config USB_IP_COMMON | ||
tristate "USB IP support (EXPERIMENTAL)" | ||
depends on USB && EXPERIMENTAL | ||
default N | ||
---help--- | ||
This enables pushing USB packets over IP to allow remote | ||
machines access to USB devices directly. For more details, | ||
and links to the userspace utility programs to let this work | ||
properly, see http://usbip.naist.jp/ | ||
|
||
To compile this driver as a module, choose M here: the | ||
module will be called usbip_common_mod. | ||
|
||
If unsure, say N. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
obj-$(CONFIG_USB_IP_COMMON) += usbip_common_mod.o | ||
usbip_common_mod-objs := usbip_common.o usbip_event.o | ||
|
||
ifeq ($(CONFIG_USB_DEBUG),y) | ||
EXTRA_CFLAGS += -DDEBUG | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
TODO: | ||
- more discussion about the protocol | ||
- testing | ||
- review of the userspace interface | ||
|
||
Please send patches for this code to Greg Kroah-Hartman <greg@kroah.com> |
Oops, something went wrong.