diff options
author | Thorsten Blum <thorsten.blum@toblux.com> | 2024-07-04 06:51:34 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2024-07-04 22:37:26 +0200 |
commit | 2fd4e52e442c42e01722f5d4cfef693a2da478dd (patch) | |
tree | 611699f84beae74de9bd32d69633a41600126178 /arch/parisc | |
parent | parisc: Fix warning at drivers/pci/msi/msi.h:121 (diff) | |
download | linux-2fd4e52e442c42e01722f5d4cfef693a2da478dd.tar.xz linux-2fd4e52e442c42e01722f5d4cfef693a2da478dd.zip |
parisc: Use max() to calculate parisc_tlb_flush_threshold
Use max() to reduce 4 lines of code to a single line and improve its
readability.
Fixes the following Coccinelle/coccicheck warning reported by
minmax.cocci:
WARNING opportunity for max()
Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc')
-rw-r--r-- | arch/parisc/kernel/cache.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/arch/parisc/kernel/cache.c b/arch/parisc/kernel/cache.c index 483bfafd930c..db531e58d70e 100644 --- a/arch/parisc/kernel/cache.c +++ b/arch/parisc/kernel/cache.c @@ -611,11 +611,7 @@ void __init parisc_setup_cache_timing(void) threshold/1024); set_tlb_threshold: - if (threshold > FLUSH_TLB_THRESHOLD) - parisc_tlb_flush_threshold = threshold; - else - parisc_tlb_flush_threshold = FLUSH_TLB_THRESHOLD; - + parisc_tlb_flush_threshold = max(threshold, FLUSH_TLB_THRESHOLD); printk(KERN_INFO "TLB flush threshold set to %lu KiB\n", parisc_tlb_flush_threshold/1024); } |