1
0
mirror of https://github.com/DigitalDevices/dddvb.git synced 2023-10-10 13:37:43 +02:00

allow fmode 4

This commit is contained in:
Ralph Metzler 2018-06-23 16:44:16 +02:00
parent 6219e19ece
commit f7772c7a88

View File

@ -4027,7 +4027,7 @@ static ssize_t fmode_store(struct device *device, struct device_attribute *attr,
if (sscanf(buf, "%u\n", &val) != 1) if (sscanf(buf, "%u\n", &val) != 1)
return -EINVAL; return -EINVAL;
if (val > 3) if (val > 4)
return -EINVAL; return -EINVAL;
ddb_lnb_init_fmode(dev, &dev->link[num], val); ddb_lnb_init_fmode(dev, &dev->link[num], val);
return count; return count;