/kernel/linux/linux-5.10/drivers/s390/block/ |
D | dcssblk.c | 126 struct dcssblk_dev_info *dev_info; in dcssblk_release_segment() local 129 dev_info = container_of(dev, struct dcssblk_dev_info, dev); in dcssblk_release_segment() 130 list_for_each_entry_safe(entry, temp, &dev_info->seg_list, lh) { in dcssblk_release_segment() 134 kfree(dev_info); in dcssblk_release_segment() 145 dcssblk_assign_free_minor(struct dcssblk_dev_info *dev_info) in dcssblk_assign_free_minor() argument 150 if (dev_info == NULL) in dcssblk_assign_free_minor() 162 dev_info->gd->first_minor = minor; in dcssblk_assign_free_minor() 192 struct dcssblk_dev_info *dev_info; in dcssblk_get_segment_by_name() local 195 list_for_each_entry(dev_info, &dcssblk_devices, lh) { in dcssblk_get_segment_by_name() 196 list_for_each_entry(entry, &dev_info->seg_list, lh) { in dcssblk_get_segment_by_name() [all …]
|
/kernel/linux/linux-5.10/drivers/power/supply/ |
D | ds2781_battery.c | 53 static inline int ds2781_battery_io(struct ds2781_device_info *dev_info, in ds2781_battery_io() argument 56 return w1_ds2781_io(dev_info->w1_dev, buf, addr, count, io); in ds2781_battery_io() 59 static int w1_ds2781_read(struct ds2781_device_info *dev_info, char *buf, in w1_ds2781_read() argument 62 return ds2781_battery_io(dev_info, buf, addr, count, 0); in w1_ds2781_read() 65 static inline int ds2781_read8(struct ds2781_device_info *dev_info, u8 *val, in ds2781_read8() argument 68 return ds2781_battery_io(dev_info, val, addr, sizeof(u8), 0); in ds2781_read8() 71 static int ds2781_read16(struct ds2781_device_info *dev_info, s16 *val, in ds2781_read16() argument 77 ret = ds2781_battery_io(dev_info, raw, addr, sizeof(raw), 0); in ds2781_read16() 86 static inline int ds2781_read_block(struct ds2781_device_info *dev_info, in ds2781_read_block() argument 89 return ds2781_battery_io(dev_info, val, addr, count, 0); in ds2781_read_block() [all …]
|
D | ds2780_battery.c | 55 static inline int ds2780_battery_io(struct ds2780_device_info *dev_info, in ds2780_battery_io() argument 58 return w1_ds2780_io(dev_info->w1_dev, buf, addr, count, io); in ds2780_battery_io() 61 static inline int ds2780_read8(struct ds2780_device_info *dev_info, u8 *val, in ds2780_read8() argument 64 return ds2780_battery_io(dev_info, val, addr, sizeof(u8), 0); in ds2780_read8() 67 static int ds2780_read16(struct ds2780_device_info *dev_info, s16 *val, in ds2780_read16() argument 73 ret = ds2780_battery_io(dev_info, raw, addr, sizeof(raw), 0); in ds2780_read16() 82 static inline int ds2780_read_block(struct ds2780_device_info *dev_info, in ds2780_read_block() argument 85 return ds2780_battery_io(dev_info, val, addr, count, 0); in ds2780_read_block() 88 static inline int ds2780_write(struct ds2780_device_info *dev_info, u8 *val, in ds2780_write() argument 91 return ds2780_battery_io(dev_info, val, addr, count, 1); in ds2780_write() [all …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/ |
D | hns3_debugfs.c | 38 dev_info(&h->pdev->dev, "queue info\n"); in hns3_dbg_queue_info() 61 dev_info(&h->pdev->dev, "RX(%u) BASE ADD: 0x%08x%08x\n", i, in hns3_dbg_queue_info() 66 dev_info(&h->pdev->dev, "RX(%u) RING BD NUM: %u\n", i, value); in hns3_dbg_queue_info() 70 dev_info(&h->pdev->dev, "RX(%u) RING BD LEN: %u\n", i, value); in hns3_dbg_queue_info() 74 dev_info(&h->pdev->dev, "RX(%u) RING TAIL: %u\n", i, value); in hns3_dbg_queue_info() 78 dev_info(&h->pdev->dev, "RX(%u) RING HEAD: %u\n", i, value); in hns3_dbg_queue_info() 82 dev_info(&h->pdev->dev, "RX(%u) RING FBDNUM: %u\n", i, value); in hns3_dbg_queue_info() 86 dev_info(&h->pdev->dev, "RX(%u) RING PKTNUM: %u\n", i, value); in hns3_dbg_queue_info() 93 dev_info(&h->pdev->dev, "TX(%u) BASE ADD: 0x%08x%08x\n", i, in hns3_dbg_queue_info() 98 dev_info(&h->pdev->dev, "TX(%u) RING BD NUM: %u\n", i, value); in hns3_dbg_queue_info() [all …]
|
/kernel/linux/linux-5.10/drivers/edac/ |
D | amd8131_edac.c | 72 static void amd8131_pcix_init(struct amd8131_dev_info *dev_info) in amd8131_pcix_init() argument 75 struct pci_dev *dev = dev_info->dev; in amd8131_pcix_init() 123 static void amd8131_pcix_exit(struct amd8131_dev_info *dev_info) in amd8131_pcix_exit() argument 126 struct pci_dev *dev = dev_info->dev; in amd8131_pcix_exit() 151 struct amd8131_dev_info *dev_info = edac_dev->pvt_info; in amd8131_pcix_check() local 152 struct pci_dev *dev = dev_info->dev; in amd8131_pcix_check() 159 "on %s bridge\n", dev_info->ctl_name); in amd8131_pcix_check() 179 "on %s bridge\n", dev_info->ctl_name); in amd8131_pcix_check() 192 "on %s bridge\n", dev_info->ctl_name); in amd8131_pcix_check() 205 "on %s bridge\n", dev_info->ctl_name); in amd8131_pcix_check() [all …]
|
D | amd8111_edac.c | 233 static void amd8111_lpc_bridge_init(struct amd8111_dev_info *dev_info) in amd8111_lpc_bridge_init() argument 236 struct pci_dev *dev = dev_info->dev; in amd8111_lpc_bridge_init() 270 static void amd8111_lpc_bridge_exit(struct amd8111_dev_info *dev_info) in amd8111_lpc_bridge_exit() argument 278 struct amd8111_dev_info *dev_info = edac_dev->pvt_info; in amd8111_lpc_bridge_check() local 279 struct pci_dev *dev = dev_info->dev; in amd8111_lpc_bridge_check() 286 dev_info->ctl_name); in amd8111_lpc_bridge_check() 339 struct amd8111_dev_info *dev_info = &amd8111_devices[id->driver_data]; in amd8111_dev_probe() local 342 dev_info->dev = pci_get_device(PCI_VENDOR_ID_AMD, in amd8111_dev_probe() 343 dev_info->err_dev, NULL); in amd8111_dev_probe() 345 if (!dev_info->dev) { in amd8111_dev_probe() [all …]
|
D | cpc925_edac.c | 278 void (*init)(struct cpc925_dev_info *dev_info); 279 void (*exit)(struct cpc925_dev_info *dev_info); 615 static void cpc925_cpu_init(struct cpc925_dev_info *dev_info) in cpc925_cpu_init() argument 620 apimask = __raw_readl(dev_info->vbase + REG_APIMASK_OFFSET); in cpc925_cpu_init() 632 __raw_writel(apimask, dev_info->vbase + REG_APIMASK_OFFSET); in cpc925_cpu_init() 636 static void cpc925_cpu_exit(struct cpc925_dev_info *dev_info) in cpc925_cpu_exit() argument 655 struct cpc925_dev_info *dev_info = edac_dev->pvt_info; in cpc925_cpu_check() local 660 apiexcp = __raw_readl(dev_info->vbase + REG_APIEXCP_OFFSET); in cpc925_cpu_check() 667 apimask = __raw_readl(dev_info->vbase + REG_APIMASK_OFFSET); in cpc925_cpu_check() 678 static void cpc925_htlink_init(struct cpc925_dev_info *dev_info) in cpc925_htlink_init() argument [all …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/i40e/ |
D | i40e_debugfs.c | 29 dev_info(&pf->pdev->dev, "%d: bad seid\n", seid); in i40e_dbg_find_vsi() 124 dev_info(&pf->pdev->dev, in i40e_dbg_dump_vsi_seid() 128 dev_info(&pf->pdev->dev, "vsi seid %d\n", seid); in i40e_dbg_dump_vsi_seid() 132 dev_info(&pf->pdev->dev, " netdev: name = %s, state = %lu, flags = 0x%08x\n", in i40e_dbg_dump_vsi_seid() 134 dev_info(&pf->pdev->dev, " features = 0x%08lx\n", in i40e_dbg_dump_vsi_seid() 136 dev_info(&pf->pdev->dev, " hw_features = 0x%08lx\n", in i40e_dbg_dump_vsi_seid() 138 dev_info(&pf->pdev->dev, " vlan_features = 0x%08lx\n", in i40e_dbg_dump_vsi_seid() 141 dev_info(&pf->pdev->dev, in i40e_dbg_dump_vsi_seid() 145 dev_info(&pf->pdev->dev, in i40e_dbg_dump_vsi_seid() 149 dev_info(&pf->pdev->dev, " MAC address: %pM SAN MAC: %pM Port MAC: %pM\n", in i40e_dbg_dump_vsi_seid() [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/pm/swsmu/smu11/ |
D | sienna_cichlid_ppt.c | 1072 dev_info(smu->adev->dev,"Setting DCEFCLK min/max dpm level is not supported!\n"); in sienna_cichlid_force_clk_levels() 1432 dev_info(smu->adev->dev, "Attempt to set Hard Min for DCEFCLK Failed!"); in sienna_cichlid_notify_smc_display_config() 1805 dev_info(smu->adev->dev, "Dumped PPTable:\n"); in sienna_cichlid_dump_pptable() 1807 dev_info(smu->adev->dev, "Version = 0x%08x\n", pptable->Version); in sienna_cichlid_dump_pptable() 1808 dev_info(smu->adev->dev, "FeaturesToRun[0] = 0x%08x\n", pptable->FeaturesToRun[0]); in sienna_cichlid_dump_pptable() 1809 dev_info(smu->adev->dev, "FeaturesToRun[1] = 0x%08x\n", pptable->FeaturesToRun[1]); in sienna_cichlid_dump_pptable() 1812 dev_info(smu->adev->dev, "SocketPowerLimitAc[%d] = 0x%x\n", i, pptable->SocketPowerLimitAc[i]); in sienna_cichlid_dump_pptable() 1813 …dev_info(smu->adev->dev, "SocketPowerLimitAcTau[%d] = 0x%x\n", i, pptable->SocketPowerLimitAcTau[i… in sienna_cichlid_dump_pptable() 1814 dev_info(smu->adev->dev, "SocketPowerLimitDc[%d] = 0x%x\n", i, pptable->SocketPowerLimitDc[i]); in sienna_cichlid_dump_pptable() 1815 …dev_info(smu->adev->dev, "SocketPowerLimitDcTau[%d] = 0x%x\n", i, pptable->SocketPowerLimitDcTau[i… in sienna_cichlid_dump_pptable() [all …]
|
D | arcturus_ppt.c | 441 dev_info(smu->adev->dev, "smc_dpm_info table revision(format.content): %d.%d\n", in arcturus_append_powerplay_table() 1425 dev_info(smu->adev->dev, "Dumped PPTable:\n"); in arcturus_dump_pptable() 1427 dev_info(smu->adev->dev, "Version = 0x%08x\n", pptable->Version); in arcturus_dump_pptable() 1429 dev_info(smu->adev->dev, "FeaturesToRun[0] = 0x%08x\n", pptable->FeaturesToRun[0]); in arcturus_dump_pptable() 1430 dev_info(smu->adev->dev, "FeaturesToRun[1] = 0x%08x\n", pptable->FeaturesToRun[1]); in arcturus_dump_pptable() 1433 dev_info(smu->adev->dev, "SocketPowerLimitAc[%d] = %d\n", i, pptable->SocketPowerLimitAc[i]); in arcturus_dump_pptable() 1434 …dev_info(smu->adev->dev, "SocketPowerLimitAcTau[%d] = %d\n", i, pptable->SocketPowerLimitAcTau[i]); in arcturus_dump_pptable() 1437 dev_info(smu->adev->dev, "TdcLimitSoc = %d\n", pptable->TdcLimitSoc); in arcturus_dump_pptable() 1438 dev_info(smu->adev->dev, "TdcLimitSocTau = %d\n", pptable->TdcLimitSocTau); in arcturus_dump_pptable() 1439 dev_info(smu->adev->dev, "TdcLimitGfx = %d\n", pptable->TdcLimitGfx); in arcturus_dump_pptable() [all …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/hisilicon/hns3/hns3pf/ |
D | hclge_debugfs.c | 166 dev_info(&hdev->pdev->dev, "%s: 0x%x\n", in hclge_dbg_dump_reg_common() 195 dev_info(&hdev->pdev->dev, "config_mac_trans_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 197 dev_info(&hdev->pdev->dev, "config_mac_rcv_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 199 dev_info(&hdev->pdev->dev, "config_pad_trans_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 201 dev_info(&hdev->pdev->dev, "config_pad_rcv_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 203 dev_info(&hdev->pdev->dev, "config_1588_trans_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 205 dev_info(&hdev->pdev->dev, "config_1588_rcv_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 207 dev_info(&hdev->pdev->dev, "config_mac_app_loop_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 209 dev_info(&hdev->pdev->dev, "config_mac_line_loop_en: %#x\n", in hclge_dbg_dump_mac_enable_status() 211 dev_info(&hdev->pdev->dev, "config_mac_fcs_tx_en: %#x\n", in hclge_dbg_dump_mac_enable_status() [all …]
|
/kernel/linux/linux-5.10/include/net/caif/ |
D | cfsrvl.h | 22 struct dev_info dev_info; member 28 struct cflayer *cfvei_create(u8 linkid, struct dev_info *dev_info); 29 struct cflayer *cfdgml_create(u8 linkid, struct dev_info *dev_info); 30 struct cflayer *cfutill_create(u8 linkid, struct dev_info *dev_info); 31 struct cflayer *cfvidl_create(u8 linkid, struct dev_info *dev_info); 32 struct cflayer *cfrfml_create(u8 linkid, struct dev_info *dev_info, 34 struct cflayer *cfdbgl_create(u8 linkid, struct dev_info *dev_info); 43 struct dev_info *dev_info,
|
/kernel/linux/linux-5.10/drivers/net/ethernet/emulex/benet/ |
D | be_roce.c | 28 struct be_dev_info dev_info; in _be_roce_dev_add() local 45 dev_info.dpp_unmapped_addr = pci_resource_start(pdev, 2); in _be_roce_dev_add() 46 dev_info.dpp_unmapped_len = pci_resource_len(pdev, 2); in _be_roce_dev_add() 48 dev_info.dpp_unmapped_addr = 0; in _be_roce_dev_add() 49 dev_info.dpp_unmapped_len = 0; in _be_roce_dev_add() 51 dev_info.pdev = adapter->pdev; in _be_roce_dev_add() 52 dev_info.db = adapter->db; in _be_roce_dev_add() 53 dev_info.unmapped_db = adapter->roce_db.io_addr; in _be_roce_dev_add() 54 dev_info.db_page_size = adapter->roce_db.size; in _be_roce_dev_add() 55 dev_info.db_total_size = adapter->roce_db.total_size; in _be_roce_dev_add() [all …]
|
/kernel/linux/linux-5.10/drivers/staging/iio/addac/ |
D | adt7316.c | 225 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_show_enabled() local 226 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_show_enabled() 256 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_store_enabled() local 257 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_store_enabled() 280 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_show_select_ex_temp() local 281 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_show_select_ex_temp() 294 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_store_select_ex_temp() local 295 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_store_select_ex_temp() 324 struct iio_dev *dev_info = dev_to_iio_dev(dev); in adt7316_show_mode() local 325 struct adt7316_chip_info *chip = iio_priv(dev_info); in adt7316_show_mode() [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/ |
D | amdgpu_rap.c | 76 dev_info(adev->dev, "RAP L0 validate test success.\n"); in amdgpu_rap_debugfs_write() 82 dev_info(adev->dev, "RAP test failed, the output is:\n"); in amdgpu_rap_debugfs_write() 83 dev_info(adev->dev, "\tlast_subsection: 0x%08x.\n", in amdgpu_rap_debugfs_write() 85 dev_info(adev->dev, "\tnum_total_validate: 0x%08x.\n", in amdgpu_rap_debugfs_write() 87 dev_info(adev->dev, "\tnum_valid: 0x%08x.\n", in amdgpu_rap_debugfs_write() 89 dev_info(adev->dev, "\tlast_validate_addr: 0x%08x.\n", in amdgpu_rap_debugfs_write() 91 dev_info(adev->dev, "\tlast_validate_val: 0x%08x.\n", in amdgpu_rap_debugfs_write() 93 dev_info(adev->dev, "\tlast_validate_val_exptd: 0x%08x.\n", in amdgpu_rap_debugfs_write() 98 dev_info(adev->dev, "Unsupported op id: %d, ", op); in amdgpu_rap_debugfs_write() 99 dev_info(adev->dev, "Only support op 2(L0 validate test).\n"); in amdgpu_rap_debugfs_write()
|
D | amdgpu_kms.c | 720 struct drm_amdgpu_info_device dev_info; in amdgpu_info_ioctl() local 723 memset(&dev_info, 0, sizeof(dev_info)); in amdgpu_info_ioctl() 724 dev_info.device_id = dev->pdev->device; in amdgpu_info_ioctl() 725 dev_info.chip_rev = adev->rev_id; in amdgpu_info_ioctl() 726 dev_info.external_rev = adev->external_rev_id; in amdgpu_info_ioctl() 727 dev_info.pci_rev = dev->pdev->revision; in amdgpu_info_ioctl() 728 dev_info.family = adev->family; in amdgpu_info_ioctl() 729 dev_info.num_shader_engines = adev->gfx.config.max_shader_engines; in amdgpu_info_ioctl() 730 dev_info.num_shader_arrays_per_engine = adev->gfx.config.max_sh_per_se; in amdgpu_info_ioctl() 732 dev_info.gpu_counter_freq = amdgpu_asic_get_xclk(adev) * 10; in amdgpu_info_ioctl() [all …]
|
/kernel/linux/linux-5.10/drivers/mfd/ |
D | stw481x.c | 95 dev_info(&stw481x->client->dev, "voltages %s\n", in stw481x_startup() 97 dev_info(&stw481x->client->dev, "MMC level shifter %s\n", in stw481x_startup() 99 dev_info(&stw481x->client->dev, "VMMC: %s\n", in stw481x_startup() 102 dev_info(&stw481x->client->dev, "STw481x power control registers:\n"); in stw481x_startup() 120 dev_info(&stw481x->client->dev, "VCORE: %u.%uV %s\n", in stw481x_startup() 124 dev_info(&stw481x->client->dev, "VPLL: %u.%uV %s\n", in stw481x_startup() 128 dev_info(&stw481x->client->dev, "VAUX: %u.%uV %s\n", in stw481x_startup() 136 dev_info(&stw481x->client->dev, "TWARN: %s threshold, %s\n", in stw481x_startup() 140 dev_info(&stw481x->client->dev, "VMMC: %s\n", in stw481x_startup() 142 dev_info(&stw481x->client->dev, "IT WAKE UP: %s\n", in stw481x_startup() [all …]
|
/kernel/linux/linux-5.10/drivers/crypto/qat/qat_common/ |
D | adf_ctl_drv.c | 219 dev_info(&GET_DEV(dev), in adf_ctl_is_device_in_use() 308 dev_info(&GET_DEV(accel_dev), in adf_ctl_ioctl_dev_start() 315 dev_info(&GET_DEV(accel_dev), in adf_ctl_ioctl_dev_start() 346 struct adf_dev_status_info dev_info; in adf_ctl_ioctl_get_status() local 349 if (copy_from_user(&dev_info, (void __user *)arg, in adf_ctl_ioctl_get_status() 355 accel_dev = adf_devmgr_get_dev_by_id(dev_info.accel_id); in adf_ctl_ioctl_get_status() 360 dev_info.state = adf_dev_started(accel_dev) ? DEV_UP : DEV_DOWN; in adf_ctl_ioctl_get_status() 361 dev_info.num_ae = hw_data->get_num_aes(hw_data); in adf_ctl_ioctl_get_status() 362 dev_info.num_accel = hw_data->get_num_accels(hw_data); in adf_ctl_ioctl_get_status() 363 dev_info.num_logical_accel = hw_data->num_logical_accel; in adf_ctl_ioctl_get_status() [all …]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/pl111/ |
D | pl111_versatile.c | 116 dev_info(drm->dev, "enable Integrator CLCD connectors\n"); in pl111_integrator_enable() 156 dev_info(drm->dev, "enable IM-PD1 CLCD connectors\n"); in pl111_impd1_enable() 167 dev_info(drm->dev, "disable IM-PD1 CLCD connectors\n"); in pl111_impd1_disable() 194 dev_info(drm->dev, "disable Versatile CLCD connectors\n"); in pl111_versatile_disable() 205 dev_info(drm->dev, "enable Versatile CLCD connectors\n"); in pl111_versatile_enable() 247 dev_info(drm->dev, "disable RealView CLCD connectors\n"); in pl111_realview_clcd_disable() 256 dev_info(drm->dev, "enable RealView CLCD connectors\n"); in pl111_realview_clcd_enable() 433 dev_info(dev, "DVI muxed to motherboard CLCD\n"); in pl111_vexpress_clcd_init() 436 dev_info(dev, in pl111_vexpress_clcd_init() 440 dev_info(dev, "core tile graphics present\n"); in pl111_vexpress_clcd_init() [all …]
|
/kernel/linux/linux-5.10/net/caif/ |
D | cfsrvl.c | 46 if (phyid != service->dev_info.id) in cfservl_ctrlcmd() 54 if (phyid != service->dev_info.id) in cfservl_ctrlcmd() 123 info->dev_info = &service->dev_info; in cfservl_modemcmd() 144 info->dev_info = &service->dev_info; in cfservl_modemcmd() 162 struct dev_info *dev_info, in cfsrvl_init() argument 172 service->dev_info = *dev_info; in cfsrvl_init() 189 return servl->dev_info.id; in cfsrvl_getphyid() 195 return servl->dev_info.id == phyid; in cfsrvl_phyid_match()
|
/kernel/linux/linux-5.10/drivers/pci/controller/ |
D | pcie-hisi-error.c | 166 dev_info(device, "Fail to get root port %04x:%02x:%02x.%d device\n", in hisi_pcie_port_do_recovery() 206 dev_info(dev, "\nHISI : HIP : PCIe controller error\n"); in hisi_pcie_handle_error() 208 dev_info(dev, "Table version = %d\n", edata->version); in hisi_pcie_handle_error() 210 dev_info(dev, "Socket ID = %d\n", edata->socket_id); in hisi_pcie_handle_error() 212 dev_info(dev, "Nimbus ID = %d\n", edata->nimbus_id); in hisi_pcie_handle_error() 214 dev_info(dev, "Sub Module = %s\n", in hisi_pcie_handle_error() 219 dev_info(dev, "Core ID = core%d\n", edata->core_id); in hisi_pcie_handle_error() 221 dev_info(dev, "Port ID = port%d\n", edata->port_id); in hisi_pcie_handle_error() 223 dev_info(dev, "Error severity = %s\n", in hisi_pcie_handle_error() 228 dev_info(dev, "Error type = 0x%x\n", edata->err_type); in hisi_pcie_handle_error() [all …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/dec/tulip/ |
D | 21142.c | 43 dev_info(&dev->dev, "21143 negotiation status %08x, %s\n", in t21142_media_task() 56 dev_info(&dev->dev, in t21142_media_task() 64 dev_info(&dev->dev, in t21142_media_task() 73 dev_info(&dev->dev, in t21142_media_task() 93 dev_info(&dev->dev, "Testing new 21143 media %s\n", in t21142_media_task() 150 dev_info(&dev->dev, in t21142_lnk_change() 175 dev_info(&dev->dev, in t21142_lnk_change() 181 dev_info(&dev->dev, in t21142_lnk_change() 225 dev_info(&dev->dev, "21143 %s link beat %s\n", in t21142_lnk_change() 237 dev_info(&dev->dev, "21143 10baseT link beat good\n"); in t21142_lnk_change() [all …]
|
/kernel/linux/linux-5.10/drivers/net/ethernet/qlogic/qed/ |
D | qed_devlink.c | 159 struct qed_dev_info *dev_info; in qed_devlink_info_get() local 163 dev_info = &cdev->common_dev_info; in qed_devlink_info_get() 179 GET_MFW_FIELD(dev_info->mfw_rev, QED_MFW_VERSION_3), in qed_devlink_info_get() 180 GET_MFW_FIELD(dev_info->mfw_rev, QED_MFW_VERSION_2), in qed_devlink_info_get() 181 GET_MFW_FIELD(dev_info->mfw_rev, QED_MFW_VERSION_1), in qed_devlink_info_get() 182 GET_MFW_FIELD(dev_info->mfw_rev, QED_MFW_VERSION_0)); in qed_devlink_info_get() 190 dev_info->fw_major, in qed_devlink_info_get() 191 dev_info->fw_minor, in qed_devlink_info_get() 192 dev_info->fw_rev, in qed_devlink_info_get() 193 dev_info->fw_eng); in qed_devlink_info_get()
|
/kernel/linux/linux-5.10/drivers/media/usb/em28xx/ |
D | em28xx-i2c.c | 699 dev_info(&dev->intf->dev, "board has no eeprom\n"); in em28xx_i2c_eeprom() 723 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 736 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 739 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 741 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 790 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 805 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 808 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 811 dev_info(&dev->intf->dev, in em28xx_i2c_eeprom() 823 dev_info(&dev->intf->dev, "\tNo audio on board.\n"); in em28xx_i2c_eeprom() [all …]
|
/kernel/linux/linux-5.10/drivers/soc/versatile/ |
D | soc-integrator.c | 140 dev_info(dev, "Detected ARM core module:\n"); in integrator_soc_init() 141 dev_info(dev, " Manufacturer: %02x\n", (val >> 24)); in integrator_soc_init() 142 dev_info(dev, " Architecture: %s\n", integrator_arch_str(val)); in integrator_soc_init() 143 dev_info(dev, " FPGA: %s\n", integrator_fpga_str(val)); in integrator_soc_init() 144 dev_info(dev, " Build: %02x\n", (val >> 4) & 0xFF); in integrator_soc_init() 145 dev_info(dev, " Rev: %c\n", ('A' + (val & 0x03))); in integrator_soc_init()
|