Browse Source

cxgb3: use kvfree() in cxgb_free_mem()

Use kvfree() instead of open-coding it.

Signed-off-by: Pekka Enberg <penberg@kernel.org>
Cc: Santosh Raspatur <santosh@chelsio.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Pekka Enberg 10 years ago
parent
commit
68c61b93e8
1 changed files with 1 additions and 4 deletions
  1. 1 4
      drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c

+ 1 - 4
drivers/net/ethernet/chelsio/cxgb3/cxgb3_offload.c

@@ -1169,10 +1169,7 @@ void *cxgb_alloc_mem(unsigned long size)
  */
 void cxgb_free_mem(void *addr)
 {
-	if (is_vmalloc_addr(addr))
-		vfree(addr);
-	else
-		kfree(addr);
+	kvfree(addr);
 }
 
 /*