diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2011-12-20 22:56:45 +0100 |
---|---|---|
committer | Rob Herring <rob.herring@calxeda.com> | 2011-12-27 10:57:13 -0600 |
commit | 7b482c8360d368fd495685a2c69ca4f1e7b29764 (patch) | |
tree | 3cd4fc6d7785d3fd0dd21c7d34cdc1731f2ff6c7 /include/linux/of_fdt.h | |
parent | 88af7f58c6f1fa28d617392c791f11317bcb590d (diff) | |
download | op-kernel-dev-7b482c8360d368fd495685a2c69ca4f1e7b29764.zip op-kernel-dev-7b482c8360d368fd495685a2c69ca4f1e7b29764.tar.gz |
ARM/of: allow *machine_desc.dt_compat to be const
This allows dt_compat to point to a constant list of compatible strings.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Diffstat (limited to 'include/linux/of_fdt.h')
-rw-r--r-- | include/linux/of_fdt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/of_fdt.h b/include/linux/of_fdt.h index c84d900..ed136ad 100644 --- a/include/linux/of_fdt.h +++ b/include/linux/of_fdt.h @@ -71,7 +71,7 @@ extern int of_fdt_is_compatible(struct boot_param_header *blob, unsigned long node, const char *compat); extern int of_fdt_match(struct boot_param_header *blob, unsigned long node, - const char **compat); + const char *const *compat); extern void of_fdt_unflatten_tree(unsigned long *blob, struct device_node **mynodes); @@ -88,7 +88,7 @@ extern int of_scan_flat_dt(int (*it)(unsigned long node, const char *uname, 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 int of_flat_dt_match(unsigned long node, const char **matches); +extern int of_flat_dt_match(unsigned long node, const char *const *matches); extern unsigned long of_get_flat_dt_root(void); extern int early_init_dt_scan_chosen(unsigned long node, const char *uname, |