net: neterion: use for_each_pci_dev to simplify the code
Use for_each_pci_dev to simplify the code. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
812e44dd18
commit
008d845cf6
|
@ -1040,7 +1040,7 @@ static int s2io_verify_pci_mode(struct s2io_nic *nic)
|
||||||
static int s2io_on_nec_bridge(struct pci_dev *s2io_pdev)
|
static int s2io_on_nec_bridge(struct pci_dev *s2io_pdev)
|
||||||
{
|
{
|
||||||
struct pci_dev *tdev = NULL;
|
struct pci_dev *tdev = NULL;
|
||||||
while ((tdev = pci_get_device(PCI_ANY_ID, PCI_ANY_ID, tdev)) != NULL) {
|
for_each_pci_dev(tdev) {
|
||||||
if (tdev->vendor == NEC_VENID && tdev->device == NEC_DEVID) {
|
if (tdev->vendor == NEC_VENID && tdev->device == NEC_DEVID) {
|
||||||
if (tdev->bus == s2io_pdev->bus->parent) {
|
if (tdev->bus == s2io_pdev->bus->parent) {
|
||||||
pci_dev_put(tdev);
|
pci_dev_put(tdev);
|
||||||
|
|
Loading…
Reference in New Issue