Commit 38b6f45a authored by Jens Axboe's avatar Jens Axboe

core: match_dev_by_uuid() should not be marked __init

It is also called outside the scope of init functions. Stephen
reports:

WARNING: init/mounts.o(.text+0x21a): Section mismatch in reference from the function name_to_dev_t() to the function .init.text:match_dev_by_uuid()
The function name_to_dev_t() references
the function __init match_dev_by_uuid().
This is often because name_to_dev_t lacks a __init
annotation or the annotation of match_dev_by_uuid is wrong.
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: default avatarJens Axboe <jaxboe@fusionio.com>
parent 2610a254
...@@ -65,7 +65,7 @@ __setup("rw", readwrite); ...@@ -65,7 +65,7 @@ __setup("rw", readwrite);
* *
* Returns 1 if the device matches, and 0 otherwise. * Returns 1 if the device matches, and 0 otherwise.
*/ */
static int __init match_dev_by_uuid(struct device *dev, void *data) static int match_dev_by_uuid(struct device *dev, void *data)
{ {
u8 *uuid = data; u8 *uuid = data;
struct hd_struct *part = dev_to_part(dev); struct hd_struct *part = dev_to_part(dev);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment