Skip to content

Commit

Permalink
usb: usbip: fix usbip.h path in userspace tool
Browse files Browse the repository at this point in the history
Fixes: 588b48c ("usbip: move usbip userspace code out of staging")
which introduced build failure by not changing uapi/usbip.h include path
according to new location.

Signed-off-by: Piotr Król <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
pietrushnic authored and gregkh committed Sep 4, 2014
1 parent 8b0da75 commit 6fa9e1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions include/uapi/linux/Kbuild
Original file line number Diff line number Diff line change
Expand Up @@ -395,6 +395,7 @@ header-y += un.h
header-y += unistd.h
header-y += unix_diag.h
header-y += usbdevice_fs.h
header-y += usbip.h
header-y += utime.h
header-y += utsname.h
header-y += uuid.h
Expand Down
2 changes: 1 addition & 1 deletion tools/usb/usbip/libsrc/usbip_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#include <syslog.h>
#include <unistd.h>
#include <linux/usb/ch9.h>
#include "../../uapi/usbip.h"
#include <linux/usbip.h>

#ifndef USBIDS_FILE
#define USBIDS_FILE "/usr/share/hwdata/usb.ids"
Expand Down

0 comments on commit 6fa9e1b

Please sign in to comment.