net: lapb: Use list_for_each_entry() to simplify code in lapb_iface.c
authorWang Hai <wanghai38@huawei.com>
Tue, 8 Jun 2021 08:13:01 +0000 (08:13 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 8 Jun 2021 23:31:25 +0000 (16:31 -0700)
Convert list_for_each() to list_for_each_entry() where
applicable. This simplifies the code.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Wang Hai <wanghai38@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/lapb/lapb_iface.c

index 1078e14..0971ca4 100644 (file)
@@ -80,11 +80,9 @@ static void __lapb_insert_cb(struct lapb_cb *lapb)
 
 static struct lapb_cb *__lapb_devtostruct(struct net_device *dev)
 {
-       struct list_head *entry;
        struct lapb_cb *lapb, *use = NULL;
 
-       list_for_each(entry, &lapb_list) {
-               lapb = list_entry(entry, struct lapb_cb, node);
+       list_for_each_entry(lapb, &lapb_list, node) {
                if (lapb->dev == dev) {
                        use = lapb;
                        break;