From: hayeswang Date: Fri, 16 Aug 2013 08:09:33 +0000 (+0800) Subject: r8152: replace void * with struct r8152 * X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=dff4e8ad88f164edc0a31e178812b99eede3bd22;p=linux-beck.git r8152: replace void * with struct r8152 * Change the type of contex of tx_agg and rx_agg from void * to staruc r8152 *. Signed-off-by: Hayes Wang Signed-off-by: David S. Miller --- diff --git a/drivers/net/usb/r8152.c b/drivers/net/usb/r8152.c index c13662b31da1..a18f02dafaaa 100644 --- a/drivers/net/usb/r8152.c +++ b/drivers/net/usb/r8152.c @@ -329,10 +329,12 @@ struct tx_desc { #define IPV6_CS (1 << 28) /* Calculate IPv6 checksum */ }; +struct r8152; + struct rx_agg { struct list_head list; struct urb *urb; - void *context; + struct r8152 *context; void *buffer; void *head; }; @@ -340,7 +342,7 @@ struct rx_agg { struct tx_agg { struct list_head list; struct urb *urb; - void *context; + struct r8152 *context; void *buffer; void *head; u32 skb_num;