diff options
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/core-iso.c | 1 | ||||
-rw-r--r-- | drivers/firewire/ohci.c | 6 | ||||
-rw-r--r-- | drivers/firewire/sbp2.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/drivers/firewire/core-iso.c b/drivers/firewire/core-iso.c index 2f432a20ce7e..d1565828ae2c 100644 --- a/drivers/firewire/core-iso.c +++ b/drivers/firewire/core-iso.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/slab.h> | 29 | #include <linux/slab.h> |
30 | #include <linux/spinlock.h> | 30 | #include <linux/spinlock.h> |
31 | #include <linux/vmalloc.h> | 31 | #include <linux/vmalloc.h> |
32 | #include <linux/export.h> | ||
32 | 33 | ||
33 | #include <asm/byteorder.h> | 34 | #include <asm/byteorder.h> |
34 | 35 | ||
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c index 59e7894ae3b8..187b3f2e797e 100644 --- a/drivers/firewire/ohci.c +++ b/drivers/firewire/ohci.c | |||
@@ -265,6 +265,7 @@ static inline struct fw_ohci *fw_ohci(struct fw_card *card) | |||
265 | static char ohci_driver_name[] = KBUILD_MODNAME; | 265 | static char ohci_driver_name[] = KBUILD_MODNAME; |
266 | 266 | ||
267 | #define PCI_DEVICE_ID_AGERE_FW643 0x5901 | 267 | #define PCI_DEVICE_ID_AGERE_FW643 0x5901 |
268 | #define PCI_DEVICE_ID_CREATIVE_SB1394 0x4001 | ||
268 | #define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380 | 269 | #define PCI_DEVICE_ID_JMICRON_JMB38X_FW 0x2380 |
269 | #define PCI_DEVICE_ID_TI_TSB12LV22 0x8009 | 270 | #define PCI_DEVICE_ID_TI_TSB12LV22 0x8009 |
270 | #define PCI_DEVICE_ID_TI_TSB12LV26 0x8020 | 271 | #define PCI_DEVICE_ID_TI_TSB12LV26 0x8020 |
@@ -291,6 +292,9 @@ static const struct { | |||
291 | {PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_AGERE_FW643, 6, | 292 | {PCI_VENDOR_ID_ATT, PCI_DEVICE_ID_AGERE_FW643, 6, |
292 | QUIRK_NO_MSI}, | 293 | QUIRK_NO_MSI}, |
293 | 294 | ||
295 | {PCI_VENDOR_ID_CREATIVE, PCI_DEVICE_ID_CREATIVE_SB1394, PCI_ANY_ID, | ||
296 | QUIRK_RESET_PACKET}, | ||
297 | |||
294 | {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, PCI_ANY_ID, | 298 | {PCI_VENDOR_ID_JMICRON, PCI_DEVICE_ID_JMICRON_JMB38X_FW, PCI_ANY_ID, |
295 | QUIRK_NO_MSI}, | 299 | QUIRK_NO_MSI}, |
296 | 300 | ||
@@ -301,7 +305,7 @@ static const struct { | |||
301 | QUIRK_NO_MSI}, | 305 | QUIRK_NO_MSI}, |
302 | 306 | ||
303 | {PCI_VENDOR_ID_RICOH, PCI_ANY_ID, PCI_ANY_ID, | 307 | {PCI_VENDOR_ID_RICOH, PCI_ANY_ID, PCI_ANY_ID, |
304 | QUIRK_CYCLE_TIMER}, | 308 | QUIRK_CYCLE_TIMER | QUIRK_NO_MSI}, |
305 | 309 | ||
306 | {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, PCI_ANY_ID, | 310 | {PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_TSB12LV22, PCI_ANY_ID, |
307 | QUIRK_CYCLE_TIMER | QUIRK_RESET_PACKET | QUIRK_NO_1394A}, | 311 | QUIRK_CYCLE_TIMER | QUIRK_RESET_PACKET | QUIRK_NO_1394A}, |
diff --git a/drivers/firewire/sbp2.c b/drivers/firewire/sbp2.c index 1bd78d8f182e..000a29ffedae 100644 --- a/drivers/firewire/sbp2.c +++ b/drivers/firewire/sbp2.c | |||
@@ -66,7 +66,7 @@ | |||
66 | * | 66 | * |
67 | * Concurrent logins are useful together with cluster filesystems. | 67 | * Concurrent logins are useful together with cluster filesystems. |
68 | */ | 68 | */ |
69 | static int sbp2_param_exclusive_login = 1; | 69 | static bool sbp2_param_exclusive_login = 1; |
70 | module_param_named(exclusive_login, sbp2_param_exclusive_login, bool, 0644); | 70 | module_param_named(exclusive_login, sbp2_param_exclusive_login, bool, 0644); |
71 | MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device " | 71 | MODULE_PARM_DESC(exclusive_login, "Exclusive login to sbp2 device " |
72 | "(default = Y, use N for concurrent initiators)"); | 72 | "(default = Y, use N for concurrent initiators)"); |