Lines Matching defs:driver
156 card->driver->set_config_rom(card, tmp_config_rom,
224 return card->driver->update_phy_reg(card, reg, 0, bit);
515 const struct fw_card_driver *driver,
521 card->driver = driver;
558 ret = card->driver->enable(card, tmp_config_rom, config_rom_length);
569 * The next few functions implement a dummy driver that is used once a card
570 * driver shuts down an fw_card. This allows the driver to cleanly unload,
571 * as all IO to the card will be handled (and failed) by the dummy driver
573 * shutdown still need to be provided by the card driver.
575 * .read/write_csr() should never be called anymore after the dummy driver
578 * before switching to the dummy driver.
673 card->driver->update_phy_reg(card, 4,
681 /* Switch off most of the card driver interface. */
682 dummy_driver.free_iso_context = card->driver->free_iso_context;
683 dummy_driver.stop_iso = card->driver->stop_iso;
684 card->driver = &dummy_driver;