aboutsummaryrefslogtreecommitdiff
path: root/drivers/firewire
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2007-04-25 22:43:16 -0700
committerStefan Richter <stefanr@s5r6.in-berlin.de>2007-04-27 01:39:03 +0200
commit0b6aa3d0537104e86d80cde66192a0aa569e0bf4 (patch)
treeff4e5203923be86183ad111866c752f6ccfbb0b2 /drivers/firewire
parent3e1dcb00d59473d52d4ca80a57408b3d953e4573 (diff)
firewire: don't use extern on public symbols
Make firewire entry points not 'extern': drivers/firewire/fw-device.c:160:25: warning: function 'fw_device_get' with external linkage has definition drivers/firewire/fw-device.c:167:13: warning: function 'fw_device_put' with external linkage has definition Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/firewire')
-rw-r--r--drivers/firewire/fw-device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firewire/fw-device.c b/drivers/firewire/fw-device.c
index 3841086048d..99d1c418d2b 100644
--- a/drivers/firewire/fw-device.c
+++ b/drivers/firewire/fw-device.c
@@ -157,14 +157,14 @@ struct bus_type fw_bus_type = {
};
EXPORT_SYMBOL(fw_bus_type);
-extern struct fw_device *fw_device_get(struct fw_device *device)
+struct fw_device *fw_device_get(struct fw_device *device)
{
get_device(&device->device);
return device;
}
-extern void fw_device_put(struct fw_device *device)
+void fw_device_put(struct fw_device *device)
{
put_device(&device->device);
}