mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] param: Make enum param_tristate always visible
@ 2020-01-21 10:45 Christian Eggers
  2020-01-22  8:03 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Christian Eggers @ 2020-01-21 10:45 UTC (permalink / raw)
  To: barebox; +Cc: Christian Eggers, ceggers

When disabling CONFIG_SHELL_HUSH, also CONFIG_PARAMETER may be disabled.
In this case, the definition "enum param_tristate" is not reachable from
watchdog.h.

I also considered moving almost everything in watchdog.h inside the
CONFIG_WATCHDOG guard. But this doesn't work for me because
drivers/watchdog/imxwd.c can also be built without CONFIG_WATCHDOG.

Signed-off-by: Christian Eggers <ceggers@arri.de>
---
 @Sascha: I've asked my IT department to stop modifiying my patch
emails. I hope the mails are ok now.

 include/param.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/param.h b/include/param.h
index d75f50ea3..f1166eb28 100644
--- a/include/param.h
+++ b/include/param.h
@@ -37,6 +37,8 @@ struct param_d {
 	enum param_type type;
 };
 
+enum param_tristate { PARAM_TRISTATE_UNKNOWN, PARAM_TRISTATE_TRUE, PARAM_TRISTATE_FALSE };
+
 #ifdef CONFIG_PARAMETER
 const char *get_param_type(struct param_d *param);
 const char *dev_get_param(struct device_d *dev, const char *name);
@@ -63,8 +65,6 @@ struct param_d *dev_add_param_enum(struct device_d *dev, const char *name,
 		int (*get)(struct param_d *p, void *priv),
 		int *value, const char * const *names, int max, void *priv);
 
-enum param_tristate { PARAM_TRISTATE_UNKNOWN, PARAM_TRISTATE_TRUE, PARAM_TRISTATE_FALSE };
-
 struct param_d *dev_add_param_tristate(struct device_d *dev, const char *name,
 		int (*set)(struct param_d *p, void *priv),
 		int (*get)(struct param_d *p, void *priv),
-- 
2.16.4


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] param: Make enum param_tristate always visible
  2020-01-21 10:45 [PATCH] param: Make enum param_tristate always visible Christian Eggers
@ 2020-01-22  8:03 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2020-01-22  8:03 UTC (permalink / raw)
  To: Christian Eggers; +Cc: barebox, ceggers

On Tue, Jan 21, 2020 at 11:45:27AM +0100, Christian Eggers wrote:
> When disabling CONFIG_SHELL_HUSH, also CONFIG_PARAMETER may be disabled.
> In this case, the definition "enum param_tristate" is not reachable from
> watchdog.h.
> 
> I also considered moving almost everything in watchdog.h inside the
> CONFIG_WATCHDOG guard. But this doesn't work for me because
> drivers/watchdog/imxwd.c can also be built without CONFIG_WATCHDOG.
> 
> Signed-off-by: Christian Eggers <ceggers@arri.de>
> ---

Applied, thanks.

>  @Sascha: I've asked my IT department to stop modifiying my patch
> emails. I hope the mails are ok now.

Yes, this works now, thanks ;)

Sascha

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-01-22  8:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-21 10:45 [PATCH] param: Make enum param_tristate always visible Christian Eggers
2020-01-22  8:03 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox