When trying to set the originator interval to 40ms, we are asked to set
it to a minimum value of 40ms. This patch permits setting an
originator interval of JITTER*20 (40ms by default) now.

Signed-off-by: Linus Lüssing <[email protected]>
---
 bat_sysfs.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bat_sysfs.c b/bat_sysfs.c
index 05703c1..68ce453 100644
--- a/bat_sysfs.c
+++ b/bat_sysfs.c
@@ -259,7 +259,7 @@ static ssize_t store_orig_interval(struct kobject *kobj, 
struct attribute *attr,
                return -EINVAL;
        }
 
-       if (orig_interval_tmp <= JITTER * 2) {
+       if (orig_interval_tmp < JITTER * 2) {
                printk(KERN_INFO "batman-adv:New originator interval too small: 
%li (min: %i)\n",
                       orig_interval_tmp, JITTER * 2);
                return -EINVAL;
-- 
1.7.1

Reply via email to