]> Git Repo - linux.git/blobdiff - net/lapb/lapb_iface.c
ACPI: resource: do IRQ override on LENOVO IdeaPad
[linux.git] / net / lapb / lapb_iface.c
index 1078e14f1acff8d837e0ca3f6dd0b64889210ffe..0971ca48ba15235253ffc15869d689514a0d8d16 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;
This page took 0.03627 seconds and 4 git commands to generate.