Symbol: dev_info
stand/efi/boot1/boot_module.h
53
struct dev_info *next;
sys/compat/linuxkpi/common/include/linux/device.h
224
dev_info(dev, __VA_ARGS__); \
sys/compat/linuxkpi/common/include/linux/pci.h
397
dev_info(&(pdev)->dev, fmt, ##__VA_ARGS__)
sys/compat/linuxkpi/common/include/net/cfg80211.h
2337
dev_info((wiphy)->dev, fmt, ##__VA_ARGS__)
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
682
struct bnxt_dev_info dev_info;
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
691
if (copyin(user_ptr, &dev_info, sizeof(dev_info))) {
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
697
softc = bnxt_find_dev(0, 0, 0, dev_info.nic_info.dev_name);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
704
strncpy(dev_info.nic_info.driver_version, bnxt_driver_version, 64);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
705
strncpy(dev_info.nic_info.driver_name, device_get_name(softc->dev), 64);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
706
dev_info.pci_info.domain_no = softc->domain;
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
707
dev_info.pci_info.bus_no = softc->bus;
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
708
dev_info.pci_info.device_no = softc->slot;
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
709
dev_info.pci_info.function_no = softc->function;
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
710
dev_info.pci_info.vendor_id = pci_get_vendor(softc->dev);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
711
dev_info.pci_info.device_id = pci_get_device(softc->dev);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
712
dev_info.pci_info.sub_system_vendor_id = pci_get_subvendor(softc->dev);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
713
dev_info.pci_info.sub_system_device_id = pci_get_subdevice(softc->dev);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
714
dev_info.pci_info.revision = pci_read_config(softc->dev, PCIR_REVID, 1);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
715
dev_info.pci_info.chip_rev_id = (dev_info.pci_info.device_id << 16);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
716
dev_info.pci_info.chip_rev_id |= dev_info.pci_info.revision;
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
732
strncpy(dev_info.nic_info.device_serial_number, dsn, sizeof(dsn));
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
736
dev_info.nic_info.mtu = if_getmtu(ifp);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
737
memcpy(dev_info.nic_info.mac, softc->func.mac_addr, ETHER_ADDR_LEN);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
744
dev_info.nic_info.pci_link_speed = (lnk & PCIEM_LINK_STA_SPEED);
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
745
dev_info.nic_info.pci_link_width = (lnk & PCIEM_LINK_STA_WIDTH) >> 4;
sys/dev/bnxt/bnxt_en/bnxt_mgmt.c
748
if (copyout(&dev_info, user_ptr, sizeof(dev_info))) {
sys/dev/bnxt/bnxt_re/ib_verbs.c
4017
dev_info(rdev_to_dev(rdev), "CQ is already at size %d\n", cqe);
sys/dev/bnxt/bnxt_re/main.c
1073
dev_info(rdev_to_dev(en_info->rdev),
sys/dev/bnxt/bnxt_re/main.c
1162
dev_info(rdev_to_dev(rdev), "%s: L2 driver notified to stop."
sys/dev/bnxt/bnxt_re/main.c
1173
dev_info(rdev_to_dev(rdev), "%s: Attempt to stop failed\n",
sys/dev/bnxt/bnxt_re/main.c
1455
dev_info(rdev_to_dev(rdev),
sys/dev/bnxt/bnxt_re/main.c
1475
dev_info(rdev_to_dev(rdev),
sys/dev/bnxt/bnxt_re/main.c
4237
dev_info(rdev_to_dev(rdev), "%s: Event = %s (0x%lx), rdev %s (real_dev %s)\n",
sys/dev/bnxt/bnxt_re/main.c
4285
dev_info(rdev_to_dev(rdev),
sys/dev/bnxt/bnxt_re/main.c
4287
dev_info(rdev_to_dev(rdev),
sys/dev/bnxt/bnxt_re/main.c
4289
dev_info(rdev_to_dev(rdev),
sys/dev/bnxt/bnxt_re/main.c
4291
dev_info(rdev_to_dev(rdev),
sys/dev/bnxt/bnxt_re/qplib_rcfw.c
758
dev_info(&pdev->dev, "rcfw timedout: cookie = %#x,"
sys/dev/bnxt/bnxt_re/qplib_sp.c
540
dev_info(&res->pdev->dev,
sys/dev/bxe/bxe.c
13502
val = SHMEM_RD(sc, dev_info.shared_feature_config.config);
sys/dev/bxe/bxe.c
13651
SHMEM_RD(sc, dev_info.shared_hw_config.config);
sys/dev/bxe/bxe.c
13653
SHMEM_RD(sc, dev_info.shared_hw_config.config2);
sys/dev/bxe/bxe.c
13661
SHMEM_RD(sc, dev_info.port_feature_config[port].config);
sys/dev/bxe/bxe.c
13665
SHMEM_RD(sc, dev_info.port_hw_config[port].speed_capability_mask);
sys/dev/bxe/bxe.c
13667
SHMEM_RD(sc, dev_info.port_hw_config[port].speed_capability_mask2);
sys/dev/bxe/bxe.c
13671
SHMEM_RD(sc, dev_info.port_hw_config[port].lane_config);
sys/dev/bxe/bxe.c
13674
val = SHMEM_RD(sc, dev_info.port_feature_config[port].link_config);
sys/dev/bxe/bxe.c
13678
SHMEM_RD(sc, dev_info.port_feature_config[port].link_config2);
sys/dev/bxe/bxe.c
13681
val = SHMEM_RD(sc, dev_info.shared_feature_config.config);
sys/dev/bxe/bxe.c
13692
SHMEM_RD(sc, dev_info.port_hw_config[port].multi_phy_config);
sys/dev/bxe/bxe.c
13696
SHMEM_RD(sc, dev_info.port_hw_config[port].external_phy_config);
sys/dev/bxe/bxe.c
13706
mac_hi = SHMEM_RD(sc, dev_info.port_hw_config[port].mac_upper);
sys/dev/bxe/bxe.c
13707
mac_lo = SHMEM_RD(sc, dev_info.port_hw_config[port].mac_lower);
sys/dev/bxe/bxe.c
14067
sc->devinfo.bc_ver = SHMEM_RD(sc, dev_info.bc_rev);
sys/dev/bxe/bxe.c
14247
dev_info.port_hw_config[port].external_phy_config),
sys/dev/bxe/bxe.c
14249
dev_info.port_hw_config[port].external_phy_config2));
sys/dev/bxe/bxe.c
14531
(((SHMEM_RD(sc, dev_info.port_feature_config[port].eee_power_mode)) &
sys/dev/bxe/bxe.c
16873
val = (SHMEM_RD(sc, dev_info.shared_hw_config.config2) &
sys/dev/bxe/bxe.c
19228
dev_info.port_hw_config[port].external_phy_config);
sys/dev/bxe/bxe.c
6952
SHMEM_RD(sc, dev_info.port_hw_config[port].external_phy_config);
sys/dev/bxe/bxe.c
6956
SHMEM_WR(sc, dev_info.port_hw_config[port].external_phy_config,
sys/dev/bxe/bxe_elink.c
10262
dev_info.port_hw_config[params->port].sfp_ctrl))
sys/dev/bxe/bxe_elink.c
10291
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
11038
dev_info.port_hw_config[params->port].xgbt_phy_cfg)) &
sys/dev/bxe/bxe_elink.c
11069
dev_info.port_hw_config[0].e3_cmn_pin_cfg));
sys/dev/bxe/bxe_elink.c
11082
dev_info.port_hw_config[0].default_cfg));
sys/dev/bxe/bxe_elink.c
11290
dev_info.port_hw_config[params->port].default_cfg)) &
sys/dev/bxe/bxe_elink.c
11860
dev_info.port_hw_config[port].e3_cmn_pin_cfg)) &
sys/dev/bxe/bxe_elink.c
12101
dev_info.port_hw_config[port].e3_cmn_pin_cfg)) &
sys/dev/bxe/bxe_elink.c
12970
dev_info.port_hw_config[port].xgxs_config_rx[i<<1]));
sys/dev/bxe/bxe_elink.c
12974
dev_info.port_hw_config[port].xgxs_config_tx[i<<1]));
sys/dev/bxe/bxe_elink.c
12978
dev_info.port_hw_config[port].xgxs_config2_rx[i<<1]));
sys/dev/bxe/bxe_elink.c
12982
dev_info.port_hw_config[port].xgxs_config2_rx[i<<1]));
sys/dev/bxe/bxe_elink.c
13003
dev_info.port_hw_config[port].external_phy_config));
sys/dev/bxe/bxe_elink.c
13008
dev_info.port_hw_config[port].external_phy_config2));
sys/dev/bxe/bxe_elink.c
13024
dev_info.port_feature_config[port].link_config)) &
sys/dev/bxe/bxe_elink.c
13041
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
13240
dev_info.shared_hw_config.config2));
sys/dev/bxe/bxe_elink.c
13306
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
13310
dev_info.
sys/dev/bxe/bxe_elink.c
13314
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
13318
dev_info.
sys/dev/bxe/bxe_elink.c
13460
dev_info.port_hw_config[params->port].media_type);
sys/dev/bxe/bxe_elink.c
14411
dev_info.port_hw_config[PORT_0].default_cfg));
sys/dev/bxe/bxe_elink.c
14676
dev_info.port_hw_config[port].e3_cmn_pin_cfg1)) &
sys/dev/bxe/bxe_elink.c
14846
dev_info.port_hw_config[port].e3_cmn_pin_cfg)) &
sys/dev/bxe/bxe_elink.c
14989
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
15097
dev_info.port_hw_config[port].aeu_int_mask);
sys/dev/bxe/bxe_elink.c
3714
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
3891
dev_info.shared_hw_config.board));
sys/dev/bxe/bxe_elink.c
3899
dev_info.port_hw_config[port].e3_cmn_pin_cfg));
sys/dev/bxe/bxe_elink.c
4646
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
4686
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
4837
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
5173
dev_info.port_hw_config[port].e3_sfp_ctrl)) &
sys/dev/bxe/bxe_elink.c
5249
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
5313
dev_info.port_hw_config[port].e3_sfp_ctrl)) &
sys/dev/bxe/bxe_elink.c
5333
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
5667
dev_info.port_hw_config[port].media_type);
sys/dev/bxe/bxe_elink.c
5684
dev_info.port_hw_config[port].aeu_int_mask);
sys/dev/bxe/bxe_elink.c
8315
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
8691
dev_info.port_hw_config[port].sfp_ctrl)) &
sys/dev/bxe/bxe_elink.c
8823
dev_info.port_hw_config[params->port].e3_sfp_ctrl)) &
sys/dev/bxe/bxe_elink.c
9127
dev_info.port_hw_config[params->port].media_type);
sys/dev/bxe/bxe_elink.c
9174
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
9440
dev_info.port_hw_config[params->port].sfp_ctrl)) &
sys/dev/bxe/bxe_elink.c
9473
dev_info.port_hw_config[port].e3_sfp_ctrl)) &
sys/dev/bxe/bxe_elink.c
9594
offsetof(struct shmem_region, dev_info.
sys/dev/bxe/bxe_elink.c
9889
dev_info.port_hw_config[params->port].sfp_ctrl))
sys/dev/bxe/ecore_hsi.h
2094
struct shm_dev_info dev_info; /* 0x8 (0x438) */
sys/dev/drm2/drm_fb_helper.c
1426
dev_info(fb_helper->dev->dev, "No connectors reported connected with modes\n");
sys/dev/drm2/drm_fb_helper.c
972
dev_info(fb_helper->dev->dev, "fb%d: %s frame buffer device\n",
sys/dev/drm2/drm_fb_helper.c
984
dev_info(fb_helper->dev->dev, "registered panic notifier\n");
sys/dev/enic/enic_res.c
103
dev_info(enic_get_dev(enic), "vNIC csum tx/rx %s/%s "
sys/dev/enic/enic_res.c
194
dev_info(enic_get_dev(enic),
sys/dev/enic/enic_res.c
201
dev_info(enic_get_dev(enic),
sys/dev/enic/enic_res.c
205
dev_info(enic_get_dev(enic),
sys/dev/enic/enic_res.c
96
dev_info(enic_get_dev(enic),
sys/dev/enic/if_enic.c
1481
dev_info(enic, "Overlay offload is disabled\n");
sys/dev/enic/if_enic.c
1490
dev_info(enic, "Overlay offload is enabled\n");
sys/dev/hid/hid.c
1005
hid_add_dynamic_quirk(struct hid_device_info *dev_info, uint16_t quirk)
sys/dev/hid/hid.c
1010
if (dev_info->autoQuirk[x] == 0 ||
sys/dev/hid/hid.c
1011
dev_info->autoQuirk[x] == quirk) {
sys/dev/hid/hid.c
1012
dev_info->autoQuirk[x] = quirk;
sys/dev/hid/hid.c
978
hid_test_quirk(const struct hid_device_info *dev_info, uint16_t quirk)
sys/dev/hid/hid.c
988
if (dev_info->autoQuirk[x] == quirk)
sys/dev/hid/hid.c
993
found = (hid_test_quirk_p) (dev_info, quirk);
sys/dev/hid/hid.c
999
hid_test_quirk_w(const struct hid_device_info *dev_info, uint16_t quirk)
sys/dev/hid/hid.h
315
typedef bool hid_test_quirk_t(const struct hid_device_info *dev_info,
sys/dev/hid/hid.h
342
bool hid_test_quirk(const struct hid_device_info *dev_info, uint16_t quirk);
sys/dev/hid/hid.h
343
int hid_add_dynamic_quirk(struct hid_device_info *dev_info,
sys/dev/iwx/if_iwx.c
10175
const struct iwx_dev_info *dev_info = &iwx_dev_info_table[i];
sys/dev/iwx/if_iwx.c
10177
if (dev_info->device != (uint16_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10178
dev_info->device != sc->sc_pid)
sys/dev/iwx/if_iwx.c
10181
if (dev_info->subdevice != (uint16_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10182
dev_info->subdevice != sdev_id)
sys/dev/iwx/if_iwx.c
10185
if (dev_info->mac_type != (uint16_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10186
dev_info->mac_type != mac_type)
sys/dev/iwx/if_iwx.c
10189
if (dev_info->mac_step != (uint8_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10190
dev_info->mac_step != mac_step)
sys/dev/iwx/if_iwx.c
10193
if (dev_info->rf_type != (uint16_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10194
dev_info->rf_type != rf_type)
sys/dev/iwx/if_iwx.c
10197
if (dev_info->cdb != (uint8_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10198
dev_info->cdb != cdb)
sys/dev/iwx/if_iwx.c
10201
if (dev_info->jacket != (uint8_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10202
dev_info->jacket != jacket)
sys/dev/iwx/if_iwx.c
10205
if (dev_info->rf_id != (uint8_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10206
dev_info->rf_id != rf_id)
sys/dev/iwx/if_iwx.c
10209
if (dev_info->no_160 != (uint8_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10210
dev_info->no_160 != no_160)
sys/dev/iwx/if_iwx.c
10213
if (dev_info->cores != (uint8_t)IWX_CFG_ANY &&
sys/dev/iwx/if_iwx.c
10214
dev_info->cores != cores)
sys/dev/iwx/if_iwx.c
10217
return dev_info->cfg;
sys/dev/mlx4/mlx4_core/mlx4.h
229
dev_info(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
sys/dev/mlx5/mlx5_fpga/core.h
104
dev_info(&(__adev)->mdev->pdev->dev, "FPGA: " format, ##__VA_ARGS__)
sys/dev/mpi3mr/mpi3mr.c
3561
U16 dev_info = (sasinf->DeviceInfo);
sys/dev/mpi3mr/mpi3mr.c
3562
tgtdev->dev_spec.sassata_inf.dev_info = dev_info;
sys/dev/mpi3mr/mpi3mr.c
3565
if ((dev_info & MPI3_SAS_DEVICE_INFO_DEVICE_TYPE_MASK) !=
sys/dev/mpi3mr/mpi3mr.c
3568
else if (!(dev_info & (MPI3_SAS_DEVICE_INFO_STP_SATA_TARGET |
sys/dev/mpi3mr/mpi3mr.c
3577
U16 dev_info = (pcieinf->DeviceInfo);
sys/dev/mpi3mr/mpi3mr.c
3580
tgtdev->dev_spec.pcie_inf.dev_info = dev_info;
sys/dev/mpi3mr/mpi3mr.c
3596
if (((dev_info & MPI3_DEVICE0_PCIE_DEVICE_INFO_TYPE_MASK) !=
sys/dev/mpi3mr/mpi3mr.c
3598
((dev_info & MPI3_DEVICE0_PCIE_DEVICE_INFO_TYPE_MASK) !=
sys/dev/mpi3mr/mpi3mr_cam.c
1353
((targ->dev_spec.pcie_inf.dev_info &
sys/dev/mpi3mr/mpi3mr_cam.h
59
U16 dev_info;
sys/dev/mpi3mr/mpi3mr_cam.h
68
U16 dev_info;
sys/dev/mthca/mthca_dev.h
383
dev_info(&mdev->pdev->dev, format, ## arg)
sys/dev/qat/qat_common/adf_ctl_drv.c
136
struct adf_dev_status_info *dev_info;
sys/dev/qat/qat_common/adf_ctl_drv.c
140
dev_info = (struct adf_dev_status_info *)arg;
sys/dev/qat/qat_common/adf_ctl_drv.c
142
accel_dev = adf_devmgr_get_dev_by_id(dev_info->accel_id);
sys/dev/qat/qat_common/adf_ctl_drv.c
154
dev_info->state = adf_dev_started(accel_dev) ? DEV_UP : DEV_DOWN;
sys/dev/qat/qat_common/adf_ctl_drv.c
155
dev_info->num_ae = hw_data->get_num_aes(hw_data);
sys/dev/qat/qat_common/adf_ctl_drv.c
156
dev_info->num_accel = hw_data->get_num_accels(hw_data);
sys/dev/qat/qat_common/adf_ctl_drv.c
157
dev_info->num_logical_accel = hw_data->num_logical_accel;
sys/dev/qat/qat_common/adf_ctl_drv.c
158
dev_info->banks_per_accel = (uint8_t)banks_per_accel;
sys/dev/qat/qat_common/adf_ctl_drv.c
159
strlcpy(dev_info->name, hw_data->dev_class->name,
sys/dev/qat/qat_common/adf_ctl_drv.c
160
sizeof(dev_info->name));
sys/dev/qat/qat_common/adf_ctl_drv.c
161
dev_info->instance_id = hw_data->instance_id;
sys/dev/qat/qat_common/adf_ctl_drv.c
162
dev_info->type = hw_data->dev_class->type;
sys/dev/qat/qat_common/adf_ctl_drv.c
163
dev_info->bus = pci_get_bus(accel_to_pci_dev(accel_dev));
sys/dev/qat/qat_common/adf_ctl_drv.c
164
dev_info->dev = pci_get_slot(accel_to_pci_dev(accel_dev));
sys/dev/qat/qat_common/adf_ctl_drv.c
165
dev_info->fun = pci_get_function(accel_to_pci_dev(accel_dev));
sys/dev/qat/qat_common/adf_ctl_drv.c
166
dev_info->domain = pci_get_domain(accel_to_pci_dev(accel_dev));
sys/dev/qat/qat_common/adf_ctl_drv.c
168
dev_info->pci_device_id = pci_get_device(accel_to_pci_dev(accel_dev));
sys/dev/qat/qat_common/adf_ctl_drv.c
170
dev_info->node_id = accel_dev->accel_pci_dev.node;
sys/dev/qat/qat_common/adf_ctl_drv.c
171
dev_info->sku = accel_dev->accel_pci_dev.sku;
sys/dev/qat/qat_common/adf_ctl_drv.c
173
dev_info->device_mem_available = accel_dev->aram_info ?
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
560
qlnx_dev_settings(qlnx_host_t *ha, qlnx_dev_setting_t *dev_info)
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
569
dev_info->supported = if_link.supported_caps;
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
570
dev_info->advertising = if_link.advertised_caps;
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
571
dev_info->speed = if_link.speed;
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
572
dev_info->duplex = if_link.duplex;
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
573
dev_info->port = ha->pci_func & 0x1;
sys/dev/qlnx/qlnxe/qlnx_ioctl.c
574
dev_info->autoneg = if_link.autoneg;