diff options
author | matt mooney | 2011-05-19 06:46:13 +0200 |
---|---|---|
committer | Greg Kroah-Hartman | 2011-05-20 00:34:10 +0200 |
commit | 3fadc1212a53908bc28e6351a40efd148739108b (patch) | |
tree | d8d7109fbaa5f6e05531e9286087206a35ac8592 /drivers/staging/usbip | |
parent | staging: usbip: userspace: stub_driver.c: update kernel module name (diff) | |
download | kernel-qcow2-linux-3fadc1212a53908bc28e6351a40efd148739108b.tar.gz kernel-qcow2-linux-3fadc1212a53908bc28e6351a40efd148739108b.tar.xz kernel-qcow2-linux-3fadc1212a53908bc28e6351a40efd148739108b.zip |
staging: usbip: userspace: bind-driver.c: mark remote_host as unused
Use __attribute__((unused)) to suppress error until it can be determined
that remote_host is not needed.
Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/usbip')
-rw-r--r-- | drivers/staging/usbip/userspace/src/bind-driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/staging/usbip/userspace/src/bind-driver.c b/drivers/staging/usbip/userspace/src/bind-driver.c index 955c86b23f0f..201ffbbee547 100644 --- a/drivers/staging/usbip/userspace/src/bind-driver.c +++ b/drivers/staging/usbip/userspace/src/bind-driver.c @@ -541,7 +541,7 @@ static int allusbip(void) int main(int argc, char **argv) { char *busid = NULL; - char *remote_host = NULL; + char *remote_host __attribute__((unused)) = NULL; enum { cmd_unknown = 0, |