From 3fadc1212a53908bc28e6351a40efd148739108b Mon Sep 17 00:00:00 2001 From: matt mooney Date: Wed, 18 May 2011 21:46:13 -0700 Subject: [PATCH] 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 Signed-off-by: Greg Kroah-Hartman --- drivers/staging/usbip/userspace/src/bind-driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.39.2