Staging: hv: remove UNUSED_VAR usage
authorGreg Kroah-Hartman <gregkh@suse.de>
Wed, 15 Jul 2009 19:45:20 +0000 (12:45 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 15 Sep 2009 19:01:47 +0000 (12:01 -0700)
This isn't needed at all.

Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/hv/include/osd.h
drivers/staging/hv/netvsc_drv.c

index 5bb72bc..18f5233 100644 (file)
@@ -30,8 +30,6 @@
 //
 
 
-#define UNUSED_VAR(v)          v  __attribute__((__unused__))
-
 #define ALIGN_UP(value, align)                 ( ((value) & (align-1))? ( ((value) + (align-1)) & ~(align-1) ): (value) )
 #define ALIGN_DOWN(value, align)               ( (value) & ~(align-1) )
 #define NUM_PAGES_SPANNED(addr, len)   ( (ALIGN_UP(addr+len, PAGE_SIZE) - ALIGN_DOWN(addr, PAGE_SIZE)) >> PAGE_SHIFT )
index 502a4bd..54f66da 100644 (file)
@@ -154,7 +154,7 @@ Desc:       Set the multicast list
 
 Remark:        No-op here
 --*/
-static void netvsc_set_multicast_list(UNUSED_VAR(struct net_device *net))
+static void netvsc_set_multicast_list(struct net_device *net)
 {
 }