diff options
author | Daniel Mack <zonque@gmail.com> | 2013-05-23 22:17:18 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-03 13:57:29 -0700 |
commit | f494513ff1b3f6bee2df329d8bbe864febf05a27 (patch) | |
tree | 79daa34647e30b1b2d3a272c5a2cde4bde1c56eb | |
parent | fe304143b0c3d43fbf13773bcd4a7989a1fb4e1c (diff) | |
download | op-kernel-dev-f494513ff1b3f6bee2df329d8bbe864febf05a27.zip op-kernel-dev-f494513ff1b3f6bee2df329d8bbe864febf05a27.tar.gz |
firmware: move EXPORT_SYMBOL annotations
Move EXPORT_SYMBOL annotations so they follow immediately after the
closing function brace line.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Acked-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/base/firmware_class.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/drivers/base/firmware_class.c b/drivers/base/firmware_class.c index e650c25..e704bf8 100644 --- a/drivers/base/firmware_class.c +++ b/drivers/base/firmware_class.c @@ -1107,6 +1107,7 @@ request_firmware(const struct firmware **firmware_p, const char *name, { return _request_firmware(firmware_p, name, device, true, false); } +EXPORT_SYMBOL(request_firmware); /** * release_firmware: - release the resource associated with a firmware image @@ -1120,6 +1121,7 @@ void release_firmware(const struct firmware *fw) kfree(fw); } } +EXPORT_SYMBOL(release_firmware); /* Async support */ struct firmware_work { @@ -1200,6 +1202,7 @@ request_firmware_nowait( schedule_work(&fw_work->work); return 0; } +EXPORT_SYMBOL(request_firmware_nowait); /** * cache_firmware - cache one firmware image in kernel memory space @@ -1230,6 +1233,7 @@ int cache_firmware(const char *fw_name) return ret; } +EXPORT_SYMBOL_GPL(cache_firmware); /** * uncache_firmware - remove one cached firmware image @@ -1260,6 +1264,7 @@ int uncache_firmware(const char *fw_name) return -EINVAL; } +EXPORT_SYMBOL_GPL(uncache_firmware); #ifdef CONFIG_PM_SLEEP static ASYNC_DOMAIN_EXCLUSIVE(fw_cache_domain); @@ -1566,9 +1571,3 @@ static void __exit firmware_class_exit(void) fs_initcall(firmware_class_init); module_exit(firmware_class_exit); - -EXPORT_SYMBOL(release_firmware); -EXPORT_SYMBOL(request_firmware); -EXPORT_SYMBOL(request_firmware_nowait); -EXPORT_SYMBOL_GPL(cache_firmware); -EXPORT_SYMBOL_GPL(uncache_firmware); |