aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firewire/fw-sbp2.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/firewire/fw-sbp2.c')
-rw-r--r--drivers/firewire/fw-sbp2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firewire/fw-sbp2.c b/drivers/firewire/fw-sbp2.c
index eb3bddb162e4..3308bc089beb 100644
--- a/drivers/firewire/fw-sbp2.c
+++ b/drivers/firewire/fw-sbp2.c
@@ -47,7 +47,7 @@
47#include "fw-device.h" 47#include "fw-device.h"
48 48
49/* I don't know why the SCSI stack doesn't define something like this... */ 49/* I don't know why the SCSI stack doesn't define something like this... */
50typedef void (*scsi_done_fn_t) (struct scsi_cmnd *); 50typedef void (*scsi_done_fn_t)(struct scsi_cmnd *);
51 51
52static const char sbp2_driver_name[] = "sbp2"; 52static const char sbp2_driver_name[] = "sbp2";
53 53
@@ -148,7 +148,7 @@ struct sbp2_orb {
148 dma_addr_t request_bus; 148 dma_addr_t request_bus;
149 int rcode; 149 int rcode;
150 struct sbp2_pointer pointer; 150 struct sbp2_pointer pointer;
151 void (*callback) (struct sbp2_orb * orb, struct sbp2_status * status); 151 void (*callback)(struct sbp2_orb * orb, struct sbp2_status * status);
152 struct list_head link; 152 struct list_head link;
153}; 153};
154 154