From: Ahmad Fatoum <a.fatoum@pengutronix.de> To: barebox@lists.infradead.org Cc: Ahmad Fatoum <a.fatoum@pengutronix.de>, rcz@pengutronix.de Subject: [PATCH 3/4] of: add of_get_reserve_map stub for !CONFIG_OFTREE Date: Thu, 9 Jun 2022 07:43:41 +0200 [thread overview] Message-ID: <20220609054342.661505-4-a.fatoum@pengutronix.de> (raw) In-Reply-To: <20220609054342.661505-1-a.fatoum@pengutronix.de> From: Rouven Czerwinski <r.czerwinski@pengutronix.de> This allows us to unconditionally include of.h in files which did not require CONFIG_OFTREE, required for the MMU code in later patches. Signed-off-by: Rouven Czerwinski <r.czerwinski@pengutronix.de> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> --- Compared with Rouven's v2, give extern declaration an extern in front like functions around it. Move static inline stub to top of #else for symmetry. --- include/of.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/of.h b/include/of.h index 0d125d8256d6..d55016f1e372 100644 --- a/include/of.h +++ b/include/of.h @@ -62,7 +62,6 @@ struct of_reserve_map { int of_add_reserve_entry(resource_size_t start, resource_size_t end, int flags); -struct of_reserve_map *of_get_reserve_map(void); void of_clean_reserve_map(void); void fdt_add_reserve_map(void *fdt); @@ -120,6 +119,7 @@ struct device_node *of_unflatten_dtb_const(const void *infdt, int size); struct cdev; #ifdef CONFIG_OFTREE +extern struct of_reserve_map *of_get_reserve_map(void); extern int of_bus_n_addr_cells(struct device_node *np); extern int of_n_addr_cells(struct device_node *np); extern int of_bus_n_size_cells(struct device_node *np); @@ -322,6 +322,11 @@ int of_autoenable_device_by_path(char *path); int of_autoenable_i2c_by_component(char *path); int of_prepend_machine_compatible(struct device_node *root, const char *compat); #else +static inline struct of_reserve_map *of_get_reserve_map(void) +{ + return NULL; +} + static inline bool of_node_name_eq(const struct device_node *np, const char *name) { return false; -- 2.30.2 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2022-06-09 5:45 UTC|newest] Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-06-09 5:43 [PATCH 0/4] of: request reserved memory regions so other code can't Ahmad Fatoum 2022-06-09 5:43 ` [PATCH 1/4] nvmem: rmem: get, don't request, memory region Ahmad Fatoum 2022-06-09 5:43 ` [PATCH 2/4] of: reserve: mark runtime firmware code regions specially Ahmad Fatoum 2022-06-09 8:05 ` Sascha Hauer 2022-06-09 8:17 ` Ahmad Fatoum 2022-06-09 5:43 ` Ahmad Fatoum [this message] 2022-06-09 9:14 ` [PATCH 3/4] of: add of_get_reserve_map stub for !CONFIG_OFTREE Sascha Hauer 2022-06-09 5:43 ` [PATCH 4/4] of: request reserved memory regions so other code can't Ahmad Fatoum 2022-06-09 8:31 ` [PATCH] fixup! " Ahmad Fatoum 2022-06-09 8:31 ` [PATCH 4/4] " Sascha Hauer 2022-06-09 8:36 ` Ahmad Fatoum
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20220609054342.661505-4-a.fatoum@pengutronix.de \ --to=a.fatoum@pengutronix.de \ --cc=barebox@lists.infradead.org \ --cc=rcz@pengutronix.de \ --subject='Re: [PATCH 3/4] of: add of_get_reserve_map stub for '\!'CONFIG_OFTREE' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox