The following commit has been merged in the next branch: commit 535bb4038a5a3e7b97b61b00b3d083cb57f2610c Author: Marek Lindner lindner_marek@yahoo.de Date: Sun Jun 10 22:05:40 2012 +0800
batman-adv: fix SIF show / store uint regression
Regression was introduced with commit: 98881e49
Signed-off-by: Marek Lindner lindner_marek@yahoo.de Acked-by: Sven Eckelmann sven@narfation.org
diff --git a/bat_sysfs.c b/bat_sysfs.c index e0272fe..e1ba286 100644 --- a/bat_sysfs.c +++ b/bat_sysfs.c @@ -135,8 +135,9 @@ ssize_t batadv_store_##_name(struct kobject *kobj, \ if (!hard_iface) \ return 0; \ \ - length = __store_uint_attr(buff, count, _min, _max, _post_func, \ - attr, &hard_iface->_name, net_dev); \ + length = __batadv_store_uint_attr(buff, count, _min, _max, \ + _post_func, attr, \ + &hard_iface->_name, net_dev); \ \ hardif_free_ref(hard_iface); \ return length; \