From a28085859402eecb4b2d9a051b1956e17f29e0aa Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Sat, 6 Apr 2013 18:28:40 +0200 Subject: [PATCH] param: remove now unused dev_[gs]et_param_ip Signed-off-by: Sascha Hauer --- include/param.h | 15 --------------- lib/parameter.c | 17 ----------------- 2 files changed, 32 deletions(-) diff --git a/include/param.h b/include/param.h index 66c57a9b6..3c881d780 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 bb43610eb..97105db7a 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