summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-04-06 18:28:40 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-04-11 11:48:35 +0200
commita28085859402eecb4b2d9a051b1956e17f29e0aa (patch)
treefb84f5e828f592e339bcd51155b414536f65da84
parent21a2691f06a9b92cbdf2bc0470f4aa6016620774 (diff)
downloadbarebox-a28085859402eecb4b2d9a051b1956e17f29e0aa.tar.gz
barebox-a28085859402eecb4b2d9a051b1956e17f29e0aa.tar.xz
param: remove now unused dev_[gs]et_param_ip
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--include/param.h15
-rw-r--r--lib/parameter.c17
2 files changed, 0 insertions, 32 deletions
diff --git a/include/param.h b/include/param.h
index 66c57a9b6d..3c881d7804 100644
--- a/include/param.h
+++ b/include/param.h
@@ -57,10 +57,6 @@ void dev_remove_parameters(struct device_d *dev);
int dev_param_set_generic(struct device_d *dev, struct param_d *p,
const char *val);
-/* Convenience functions to handle a parameter as an ip address */
-int dev_set_param_ip(struct device_d *dev, char *name, IPaddr_t ip);
-IPaddr_t dev_get_param_ip(struct device_d *dev, char *name);
-
#else
static inline const char *dev_get_param(struct device_d *dev, const char *name)
{
@@ -129,17 +125,6 @@ static inline int dev_param_set_generic(struct device_d *dev, struct param_d *p,
{
return 0;
}
-
-/* Convenience functions to handle a parameter as an ip address */
-static inline int dev_set_param_ip(struct device_d *dev, char *name, IPaddr_t ip)
-{
- return 0;
-}
-static inline IPaddr_t dev_get_param_ip(struct device_d *dev, char *name)
-{
- return 0;
-}
#endif
#endif /* PARAM_H */
-
diff --git a/lib/parameter.c b/lib/parameter.c
index bb43610ebf..97105db7ae 100644
--- a/lib/parameter.c
+++ b/lib/parameter.c
@@ -59,23 +59,6 @@ const char *dev_get_param(struct device_d *dev, const char *name)
return param->get(dev, param);
}
-#ifdef CONFIG_NET
-IPaddr_t dev_get_param_ip(struct device_d *dev, char *name)
-{
- IPaddr_t ip;
-
- if (string_to_ip(dev_get_param(dev, name), &ip))
- return 0;
-
- return ip;
-}
-
-int dev_set_param_ip(struct device_d *dev, char *name, IPaddr_t ip)
-{
- return dev_set_param(dev, name, ip_to_string(ip));
-}
-#endif
-
/**
* dev_set_param - set a parameter of a device to a new value
* @param dev The device