Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3f557202 authored by Andrey Utkin's avatar Andrey Utkin Committed by John W. Linville
Browse files

ath9k: drop negativity checks for unsigned values coming from kstrtoul()

parent 3ae351ab
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -202,7 +202,7 @@ static ssize_t write_file_ani(struct file *file,
	if (kstrtoul(buf, 0, &ani))
		return -EINVAL;

	if (ani < 0 || ani > 1)
	if (ani > 1)
		return -EINVAL;

	common->disable_ani = !ani;
+4 −4
Original line number Diff line number Diff line
@@ -313,7 +313,7 @@ static ssize_t write_file_spectral_short_repeat(struct file *file,
	if (kstrtoul(buf, 0, &val))
		return -EINVAL;

	if (val < 0 || val > 1)
	if (val > 1)
		return -EINVAL;

	sc->spec_config.short_repeat = val;
@@ -361,7 +361,7 @@ static ssize_t write_file_spectral_count(struct file *file,
	if (kstrtoul(buf, 0, &val))
		return -EINVAL;

	if (val < 0 || val > 255)
	if (val > 255)
		return -EINVAL;

	sc->spec_config.count = val;
@@ -409,7 +409,7 @@ static ssize_t write_file_spectral_period(struct file *file,
	if (kstrtoul(buf, 0, &val))
		return -EINVAL;

	if (val < 0 || val > 255)
	if (val > 255)
		return -EINVAL;

	sc->spec_config.period = val;
@@ -457,7 +457,7 @@ static ssize_t write_file_spectral_fft_period(struct file *file,
	if (kstrtoul(buf, 0, &val))
		return -EINVAL;

	if (val < 0 || val > 15)
	if (val > 15)
		return -EINVAL;

	sc->spec_config.fft_period = val;