aboutsummaryrefslogtreecommitdiff
path: root/include/linux/of_fdt.h
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2009-11-23 19:49:38 -0700
committerGrant Likely <grant.likely@secretlab.ca>2009-11-23 19:49:38 -0700
commit31a6a87dfc34fbf02aef9a160adf558ec56d3ccd (patch)
treedd6647ce9ca3d2c72d68f4b720b06abd1e5e6c1a /include/linux/of_fdt.h
parent819d2819303654c6829d572e698e2d0021c08599 (diff)
of/flattree: remove __init annotations from the header file
__init annotation belongs in the .c file, not the header. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Reviewed-by: Wolfram Sang <w.sang@pengutronix.de> Tested-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'include/linux/of_fdt.h')
-rw-r--r--include/linux/of_fdt.h16
1 files changed, 7 insertions, 9 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h
index d1a79f3da78..81231e04e8f 100644
--- a/include/linux/of_fdt.h
+++ b/include/linux/of_fdt.h
@@ -62,15 +62,13 @@ extern struct boot_param_header *initial_boot_params;
/* For scanning the flat device-tree at boot time */
extern char *find_flat_dt_string(u32 offset);
-extern int __init of_scan_flat_dt(int (*it)(unsigned long node,
- const char *uname, int depth,
- void *data),
- void *data);
-extern void __init *of_get_flat_dt_prop(unsigned long node, const char *name,
- unsigned long *size);
-extern int __init of_flat_dt_is_compatible(unsigned long node,
- const char *name);
-extern unsigned long __init of_get_flat_dt_root(void);
+extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname,
+ int depth, void *data),
+ void *data);
+extern void *of_get_flat_dt_prop(unsigned long node, const char *name,
+ unsigned long *size);
+extern int of_flat_dt_is_compatible(unsigned long node, const char *name);
+extern unsigned long of_get_flat_dt_root(void);
/* Other Prototypes */
extern void finish_device_tree(void);