allow fmode 4

This commit is contained in:
Ralph Metzler 2018-06-23 16:44:16 +02:00
parent 6219e19ece
commit f7772c7a88
1 changed files with 1 additions and 1 deletions

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)
return -EINVAL;
if (val > 3)
if (val > 4)
return -EINVAL;
ddb_lnb_init_fmode(dev, &dev->link[num], val);
return count;