diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-02-15 17:12:34 -0500 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2009-06-05 10:26:17 -0400 |
commit | b3b2988841ac6215e137e34e38b71acc915d1f00 (patch) | |
tree | a79df9327881a789f22f97ccebb4618008bf8529 /drivers/firewire/fw-device.c | |
parent | 0210b66dd88a2a1e451901b00378a2068b6ccb35 (diff) |
firewire: share device ID table type with ieee1394
That way, the new firedtv driver will be able to use a single ID table
in builds against ieee1394 core and/or against firewire core.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire/fw-device.c')
-rw-r--r-- | drivers/firewire/fw-device.c | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c index 551588342898..47b5b422616b 100644 --- a/drivers/firewire/fw-device.c +++ b/drivers/firewire/fw-device.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <linux/jiffies.h> | 26 | #include <linux/jiffies.h> |
27 | #include <linux/kobject.h> | 27 | #include <linux/kobject.h> |
28 | #include <linux/list.h> | 28 | #include <linux/list.h> |
29 | #include <linux/mod_devicetable.h> | ||
29 | #include <linux/mutex.h> | 30 | #include <linux/mutex.h> |
30 | #include <linux/rwsem.h> | 31 | #include <linux/rwsem.h> |
31 | #include <linux/semaphore.h> | 32 | #include <linux/semaphore.h> |
@@ -57,7 +58,8 @@ EXPORT_SYMBOL(fw_csr_iterator_next); | |||
57 | 58 | ||
58 | static int is_fw_unit(struct device *dev); | 59 | static int is_fw_unit(struct device *dev); |
59 | 60 | ||
60 | static int match_unit_directory(u32 * directory, const struct fw_device_id *id) | 61 | static int match_unit_directory(u32 *directory, |
62 | const struct ieee1394_device_id *id) | ||
61 | { | 63 | { |
62 | struct fw_csr_iterator ci; | 64 | struct fw_csr_iterator ci; |
63 | int key, value, match; | 65 | int key, value, match; |
@@ -65,14 +67,14 @@ static int match_unit_directory(u32 * directory, const struct fw_device_id *id) | |||
65 | match = 0; | 67 | match = 0; |
66 | fw_csr_iterator_init(&ci, directory); | 68 | fw_csr_iterator_init(&ci, directory); |
67 | while (fw_csr_iterator_next(&ci, &key, &value)) { | 69 | while (fw_csr_iterator_next(&ci, &key, &value)) { |
68 | if (key == CSR_VENDOR && value == id->vendor) | 70 | if (key == CSR_VENDOR && value == id->vendor_id) |
69 | match |= FW_MATCH_VENDOR; | 71 | match |= IEEE1394_MATCH_VENDOR_ID; |
70 | if (key == CSR_MODEL && value == id->model) | 72 | if (key == CSR_MODEL && value == id->model_id) |
71 | match |= FW_MATCH_MODEL; | 73 | match |= IEEE1394_MATCH_MODEL_ID; |
72 | if (key == CSR_SPECIFIER_ID && value == id->specifier_id) | 74 | if (key == CSR_SPECIFIER_ID && value == id->specifier_id) |
73 | match |= FW_MATCH_SPECIFIER_ID; | 75 | match |= IEEE1394_MATCH_SPECIFIER_ID; |
74 | if (key == CSR_VERSION && value == id->version) | 76 | if (key == CSR_VERSION && value == id->version) |
75 | match |= FW_MATCH_VERSION; | 77 | match |= IEEE1394_MATCH_VERSION; |
76 | } | 78 | } |
77 | 79 | ||
78 | return (match & id->match_flags) == id->match_flags; | 80 | return (match & id->match_flags) == id->match_flags; |