]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
rocker: Drop pointless static qualifier
authorYueHaibing <yuehaibing@huawei.com>
Fri, 19 Oct 2018 12:02:59 +0000 (12:02 +0000)
committerDavid S. Miller <davem@davemloft.net>
Fri, 19 Oct 2018 17:42:19 +0000 (10:42 -0700)
There is no need to have the 'struct rocker_desc_info *desc_info'
variable static since new value always be assigned before use it.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Acked-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/rocker/rocker_main.c

index 8721c0506af30b232f78ca7e508dbe60910a7798..beb06628f22d93fb2d4f18f1f3395093d8e95241 100644 (file)
@@ -371,7 +371,7 @@ static void rocker_desc_cookie_ptr_set(const struct rocker_desc_info *desc_info,
 static struct rocker_desc_info *
 rocker_desc_head_get(const struct rocker_dma_ring_info *info)
 {
-       static struct rocker_desc_info *desc_info;
+       struct rocker_desc_info *desc_info;
        u32 head = __pos_inc(info->head, info->size);
 
        desc_info = &info->desc_info[info->head];
@@ -402,7 +402,7 @@ static void rocker_desc_head_set(const struct rocker *rocker,
 static struct rocker_desc_info *
 rocker_desc_tail_get(struct rocker_dma_ring_info *info)
 {
-       static struct rocker_desc_info *desc_info;
+       struct rocker_desc_info *desc_info;
 
        if (info->tail == info->head)
                return NULL; /* nothing to be done between head and tail */