mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
of: align RESERVEDMEM_OF_DECLARE function callbacks to other callbacks
All the parameters for RESERVEDMEM_OF_DECLARE function callbacks are members of struct reserved_mem, so just pass the struct ptr to callback functions so the function callback is more in line with other OF match table callbacks. Acked-by: Marek Szyprowski <m.szyprowski@samsung.com> Acked-by: Grant Likely <grant.likely@linaro.org> Signed-off-by: Rob Herring <robh@kernel.org>
This commit is contained in:
@@ -188,7 +188,7 @@ static int __init __reserved_mem_init_node(struct reserved_mem *rmem)
|
|||||||
if (!of_flat_dt_is_compatible(rmem->fdt_node, compat))
|
if (!of_flat_dt_is_compatible(rmem->fdt_node, compat))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (initfn(rmem, rmem->fdt_node, rmem->name) == 0) {
|
if (initfn(rmem) == 0) {
|
||||||
pr_info("Reserved memory: initialized node %s, compatible id %s\n",
|
pr_info("Reserved memory: initialized node %s, compatible id %s\n",
|
||||||
rmem->name, compat);
|
rmem->name, compat);
|
||||||
return 0;
|
return 0;
|
||||||
|
|||||||
@@ -21,8 +21,8 @@ struct reserved_mem_ops {
|
|||||||
struct device *dev);
|
struct device *dev);
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef int (*reservedmem_of_init_fn)(struct reserved_mem *rmem,
|
typedef int (*reservedmem_of_init_fn)(struct reserved_mem *rmem);
|
||||||
unsigned long node, const char *uname);
|
|
||||||
|
|
||||||
#ifdef CONFIG_OF_RESERVED_MEM
|
#ifdef CONFIG_OF_RESERVED_MEM
|
||||||
void fdt_init_reserved_mem(void);
|
void fdt_init_reserved_mem(void);
|
||||||
|
|||||||
Reference in New Issue
Block a user