Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 133dc880 authored by zhong jiang's avatar zhong jiang Committed by David S. Miller
Browse files

net: amd: remove redundant continue



The continue will not truely skip any code. hence it is safe to
remove it.

Signed-off-by: default avatarzhong jiang <zhongjiang@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ec3ed293
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -435,10 +435,8 @@ static int __init ni65_probe1(struct net_device *dev,int ioaddr)
		}
		if(cards[i].vendor_id) {
			for(j=0;j<3;j++)
				if(inb(ioaddr+cards[i].addr_offset+j) != cards[i].vendor_id[j]) {
				if(inb(ioaddr+cards[i].addr_offset+j) != cards[i].vendor_id[j])
					release_region(ioaddr, cards[i].total_size);
					continue;
			  }
		}
		break;
	}