summaryrefslogtreecommitdiffstats
path: root/drivers/platform
diff options
context:
space:
mode:
authorDeepak R Varma <drv@mailo.com>2023-01-27 22:01:49 +0530
committerHans de Goede <hdegoede@redhat.com>2023-02-03 10:01:50 +0100
commitbdf2ffb6be35d1ae48cb4b7785a9f0427b601017 (patch)
treee3b4d0b4c7c5e43ffe34948dcda7c8ba6ba60496 /drivers/platform
parentcf2cc541423f51731c5844dddb0699e301616a86 (diff)
downloadlinux-bdf2ffb6be35d1ae48cb4b7785a9f0427b601017.tar.gz
linux-bdf2ffb6be35d1ae48cb4b7785a9f0427b601017.tar.bz2
linux-bdf2ffb6be35d1ae48cb4b7785a9f0427b601017.zip
platform/x86: dell-smo8800: Use min_t() for comparison and assignment
Simplify code by using min_t helper macro for logical evaluation and value assignment. Use the _t variant of min macro since the variable types are not same. This issue is identified by coccicheck using the minmax.cocci file. Signed-off-by: Deepak R Varma <drv@mailo.com> Acked-by: Pali Rohár <pali@kernel.org> Link: https://lore.kernel.org/r/Y9P8debIztOZXazW@ubun2204.myguest.virtualbox.org Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r--drivers/platform/x86/dell/dell-smo8800.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/platform/x86/dell/dell-smo8800.c b/drivers/platform/x86/dell/dell-smo8800.c
index 3385e852104c..8d6b7a83cf24 100644
--- a/drivers/platform/x86/dell/dell-smo8800.c
+++ b/drivers/platform/x86/dell/dell-smo8800.c
@@ -67,10 +67,7 @@ static ssize_t smo8800_misc_read(struct file *file, char __user *buf,
retval = 1;
- if (data < 255)
- byte_data = data;
- else
- byte_data = 255;
+ byte_data = min_t(u32, data, 255);
if (put_user(byte_data, buf))
retval = -EFAULT;