diff options
Diffstat (limited to 'drivers/firewire')
-rw-r--r-- | drivers/firewire/fw-device.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c index 3841086048d6..99d1c418d2b0 100644 --- a/drivers/firewire/fw-device.c +++ b/drivers/firewire/fw-device.c | |||
@@ -157,14 +157,14 @@ struct bus_type fw_bus_type = { | |||
157 | }; | 157 | }; |
158 | EXPORT_SYMBOL(fw_bus_type); | 158 | EXPORT_SYMBOL(fw_bus_type); |
159 | 159 | ||
160 | extern struct fw_device *fw_device_get(struct fw_device *device) | 160 | struct fw_device *fw_device_get(struct fw_device *device) |
161 | { | 161 | { |
162 | get_device(&device->device); | 162 | get_device(&device->device); |
163 | 163 | ||
164 | return device; | 164 | return device; |
165 | } | 165 | } |
166 | 166 | ||
167 | extern void fw_device_put(struct fw_device *device) | 167 | void fw_device_put(struct fw_device *device) |
168 | { | 168 | { |
169 | put_device(&device->device); | 169 | put_device(&device->device); |
170 | } | 170 | } |