firewire: remove unused struct members

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>

-5
-1
drivers/firewire/fw-card.c
··· 497 } 498 499 static struct fw_card_driver dummy_driver = { 500 - .name = "dummy", 501 .enable = dummy_enable, 502 .update_phy_reg = dummy_update_phy_reg, 503 .set_config_rom = dummy_set_config_rom,
··· 497 } 498 499 static struct fw_card_driver dummy_driver = { 500 .enable = dummy_enable, 501 .update_phy_reg = dummy_update_phy_reg, 502 .set_config_rom = dummy_set_config_rom,
-1
drivers/firewire/fw-device.h
··· 62 bool cmc; 63 struct fw_card *card; 64 struct device device; 65 - struct list_head link; 66 struct list_head client_list; 67 u32 *config_rom; 68 size_t config_rom_length;
··· 62 bool cmc; 63 struct fw_card *card; 64 struct device device; 65 struct list_head client_list; 66 u32 *config_rom; 67 size_t config_rom_length;
-1
drivers/firewire/fw-ohci.c
··· 2292 } 2293 2294 static const struct fw_card_driver ohci_driver = { 2295 - .name = ohci_driver_name, 2296 .enable = ohci_enable, 2297 .update_phy_reg = ohci_update_phy_reg, 2298 .set_config_rom = ohci_set_config_rom,
··· 2292 } 2293 2294 static const struct fw_card_driver ohci_driver = { 2295 .enable = ohci_enable, 2296 .update_phy_reg = ohci_update_phy_reg, 2297 .set_config_rom = ohci_set_config_rom,
-2
drivers/firewire/fw-transaction.h
··· 352 fw_iso_context_stop(struct fw_iso_context *ctx); 353 354 struct fw_card_driver { 355 - const char *name; 356 - 357 /* 358 * Enable the given card with the given initial config rom. 359 * This function is expected to activate the card, and either
··· 352 fw_iso_context_stop(struct fw_iso_context *ctx); 353 354 struct fw_card_driver { 355 /* 356 * Enable the given card with the given initial config rom. 357 * This function is expected to activate the card, and either