drivers:base:core: Moved sym export macros to respective functions
Moved 11 calls to the EXPORT_SYMBOL_GPL beneath their respective functions per checkpatch.pl warnings. Signed-off-by: David Graham White <dgwhite11@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
e49df67df1
commit
86df268705
|
@ -626,6 +626,7 @@ int device_create_file(struct device *dev,
|
|||
|
||||
return error;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_create_file);
|
||||
|
||||
/**
|
||||
* device_remove_file - remove sysfs attribute file.
|
||||
|
@ -638,6 +639,7 @@ void device_remove_file(struct device *dev,
|
|||
if (dev)
|
||||
sysfs_remove_file(&dev->kobj, &attr->attr);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_remove_file);
|
||||
|
||||
/**
|
||||
* device_create_bin_file - create sysfs binary attribute file for device.
|
||||
|
@ -748,6 +750,7 @@ void device_initialize(struct device *dev)
|
|||
device_pm_init(dev);
|
||||
set_dev_node(dev, -1);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_initialize);
|
||||
|
||||
struct kobject *virtual_device_parent(struct device *dev)
|
||||
{
|
||||
|
@ -1187,6 +1190,7 @@ name_error:
|
|||
dev->p = NULL;
|
||||
goto done;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_add);
|
||||
|
||||
/**
|
||||
* device_register - register a device with the system.
|
||||
|
@ -1211,6 +1215,7 @@ int device_register(struct device *dev)
|
|||
device_initialize(dev);
|
||||
return device_add(dev);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_register);
|
||||
|
||||
/**
|
||||
* get_device - increment reference count for device.
|
||||
|
@ -1224,6 +1229,7 @@ struct device *get_device(struct device *dev)
|
|||
{
|
||||
return dev ? kobj_to_dev(kobject_get(&dev->kobj)) : NULL;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(get_device);
|
||||
|
||||
/**
|
||||
* put_device - decrement reference count.
|
||||
|
@ -1235,6 +1241,7 @@ void put_device(struct device *dev)
|
|||
if (dev)
|
||||
kobject_put(&dev->kobj);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(put_device);
|
||||
|
||||
/**
|
||||
* device_del - delete device from system.
|
||||
|
@ -1297,6 +1304,7 @@ void device_del(struct device *dev)
|
|||
kobject_del(&dev->kobj);
|
||||
put_device(parent);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_del);
|
||||
|
||||
/**
|
||||
* device_unregister - unregister device from system.
|
||||
|
@ -1315,6 +1323,7 @@ void device_unregister(struct device *dev)
|
|||
device_del(dev);
|
||||
put_device(dev);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_unregister);
|
||||
|
||||
static struct device *next_device(struct klist_iter *i)
|
||||
{
|
||||
|
@ -1403,6 +1412,7 @@ int device_for_each_child(struct device *parent, void *data,
|
|||
klist_iter_exit(&i);
|
||||
return error;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_for_each_child);
|
||||
|
||||
/**
|
||||
* device_find_child - device iterator for locating a particular device.
|
||||
|
@ -1437,6 +1447,7 @@ struct device *device_find_child(struct device *parent, void *data,
|
|||
klist_iter_exit(&i);
|
||||
return child;
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(device_find_child);
|
||||
|
||||
int __init devices_init(void)
|
||||
{
|
||||
|
@ -1464,21 +1475,6 @@ int __init devices_init(void)
|
|||
return -ENOMEM;
|
||||
}
|
||||
|
||||
EXPORT_SYMBOL_GPL(device_for_each_child);
|
||||
EXPORT_SYMBOL_GPL(device_find_child);
|
||||
|
||||
EXPORT_SYMBOL_GPL(device_initialize);
|
||||
EXPORT_SYMBOL_GPL(device_add);
|
||||
EXPORT_SYMBOL_GPL(device_register);
|
||||
|
||||
EXPORT_SYMBOL_GPL(device_del);
|
||||
EXPORT_SYMBOL_GPL(device_unregister);
|
||||
EXPORT_SYMBOL_GPL(get_device);
|
||||
EXPORT_SYMBOL_GPL(put_device);
|
||||
|
||||
EXPORT_SYMBOL_GPL(device_create_file);
|
||||
EXPORT_SYMBOL_GPL(device_remove_file);
|
||||
|
||||
static DEFINE_MUTEX(device_hotplug_lock);
|
||||
|
||||
void lock_device_hotplug(void)
|
||||
|
|
Loading…
Reference in New Issue