Lines Matching refs:fmc
44 void fmc_dump_eeprom(const struct fmc_device *fmc) in fmc_dump_eeprom() argument
52 pr_info("FMC: %s (%s), slot %i, device %s\n", dev_name(fmc->hwdev), in fmc_dump_eeprom()
53 fmc->carrier_name, fmc->slot_id, dev_name(&fmc->dev)); in fmc_dump_eeprom()
54 pr_info("FMC: dumping eeprom 0x%x (%i) bytes\n", fmc->eeprom_len, in fmc_dump_eeprom()
55 fmc->eeprom_len); in fmc_dump_eeprom()
57 line = fmc->eeprom; in fmc_dump_eeprom()
59 for (i = 0; i < fmc->eeprom_len; i += LINELEN, line += LINELEN) in fmc_dump_eeprom()
63 void fmc_dump_sdb(const struct fmc_device *fmc) in fmc_dump_sdb() argument
68 if (!fmc->sdb) in fmc_dump_sdb()
75 fmc_show_sdb_tree(fmc); in fmc_dump_sdb()
90 pr_info("FMC: %s (%s), slot %i, device %s\n", dev_name(fmc->hwdev), in fmc_dump_sdb()
91 fmc->carrier_name, fmc->slot_id, dev_name(&fmc->dev)); in fmc_dump_sdb()
94 len = fmc->sdb->len * sizeof(union sdb_record); in fmc_dump_sdb()
95 line = (void *)fmc->sdb->record; in fmc_dump_sdb()