diff options
author | Kristian Høgsberg | 2007-03-07 18:12:41 +0100 |
---|---|---|
committer | Stefan Richter | 2007-03-09 22:03:08 +0100 |
commit | 97bd9efa5a4d8a70b3bafe0d1e3e1a814fdac5bc (patch) | |
tree | 7f405323e9b6ccd690b7673cc4495d35e5926a06 /drivers/firewire/fw-device.h | |
parent | firewire: Only use INIT_DELAYED_WORK for first initialization. (diff) | |
download | kernel-qcow2-linux-97bd9efa5a4d8a70b3bafe0d1e3e1a814fdac5bc.tar.gz kernel-qcow2-linux-97bd9efa5a4d8a70b3bafe0d1e3e1a814fdac5bc.tar.xz kernel-qcow2-linux-97bd9efa5a4d8a70b3bafe0d1e3e1a814fdac5bc.zip |
firewire: Add a bus reset event type for fw-device-cdev.
Signed-off-by: Kristian Høgsberg <krh@redhat.com>
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire/fw-device.h')
-rw-r--r-- | drivers/firewire/fw-device.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/firewire/fw-device.h b/drivers/firewire/fw-device.h index 402a785ceedb..4f731c2b121c 100644 --- a/drivers/firewire/fw-device.h +++ b/drivers/firewire/fw-device.h @@ -40,6 +40,7 @@ struct fw_device { struct fw_card *card; struct device device; struct cdev cdev; + struct list_head client_list; __be32 *config_rom; size_t config_rom_length; int config_rom_retries; @@ -56,6 +57,8 @@ struct fw_device *fw_device_get(struct fw_device *device); void fw_device_put(struct fw_device *device); int fw_device_enable_phys_dma(struct fw_device *device); +void fw_device_cdev_update(struct fw_device *device); + struct fw_unit { struct device device; u32 *directory; |