mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-02-06 06:43:55 +00:00
linux/ledtrig-netdev: remove unsigned < 0
check
Found-by: Coverity Scan Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
This commit is contained in:
parent
296312fca1
commit
814e1695aa
@ -113,7 +113,7 @@ static ssize_t led_device_name_store(struct device *dev,
|
||||
struct led_classdev *led_cdev = dev_get_drvdata(dev);
|
||||
struct led_netdev_data *trigger_data = led_cdev->trigger_data;
|
||||
|
||||
if (size < 0 || size >= IFNAMSIZ)
|
||||
if (size >= IFNAMSIZ)
|
||||
return -EINVAL;
|
||||
|
||||
cancel_delayed_work_sync(&trigger_data->work);
|
||||
|
Loading…
Reference in New Issue
Block a user