def select_network_devices(component)
      pci_devices = component.try(:pciDevices).try(:select) { |device| network_device?(device) }
      addin_cards = component.try(:addinCards).try(:select) { |device| network_device?(device) }

      devices = []