From: "Wachowski, Karol" <karol.wachowski@linux.intel.com>
To: Andrzej Kacprowski <andrzej.kacprowski@linux.intel.com>,
dri-devel@lists.freedesktop.org
Cc: oded.gabbay@gmail.com, jeff.hugo@oss.qualcomm.com, lizhi.hou@amd.com
Subject: Re: [PATCH] accel/ivpu: Remove unnecessary min_t()/max_t() usage
Date: Thu, 16 Jul 2026 15:29:34 +0200 [thread overview]
Message-ID: <27097f78-bd31-402b-89bf-bf06cdd363a2@linux.intel.com> (raw)
In-Reply-To: <20260716083350.248419-1-andrzej.kacprowski@linux.intel.com>
On 16-Jul-26 10:33, Andrzej Kacprowski wrote:
> Remove unnecessary min_t()/max_t() usage in ivpu_fw.c
> and ivpu_mmu_context.c. The min()/max() macros are
> sufficient as the types are compatible and
> there is no risk of overflow.
>
> Signed-off-by: Andrzej Kacprowski <andrzej.kacprowski@linux.intel.com>
> ---
> drivers/accel/ivpu/ivpu_fw.c | 2 +-
> drivers/accel/ivpu/ivpu_mmu_context.c | 4 ++--
> 2 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/accel/ivpu/ivpu_fw.c b/drivers/accel/ivpu/ivpu_fw.c
> index 5a8f7dfb54e6..b78b7c35cd9b 100644
> --- a/drivers/accel/ivpu/ivpu_fw.c
> +++ b/drivers/accel/ivpu/ivpu_fw.c
> @@ -318,7 +318,7 @@ static int ivpu_fw_parse(struct ivpu_device *vdev)
> fw->shave_nn_size = PAGE_ALIGN(fw_hdr->shave_nn_fw_size);
> fw->cold_boot_entry_point = fw_hdr->entry_point;
>
> - fw->trace_level = min_t(u32, ivpu_fw_log_level, IVPU_FW_LOG_FATAL);
> + fw->trace_level = min(ivpu_fw_log_level, IVPU_FW_LOG_FATAL);
> fw->trace_destination_mask = VPU_TRACE_DESTINATION_VERBOSE_TRACING;
> fw->trace_hw_component_mask = -1;
>
> diff --git a/drivers/accel/ivpu/ivpu_mmu_context.c b/drivers/accel/ivpu/ivpu_mmu_context.c
> index c4014c83e727..bb3ca81838e3 100644
> --- a/drivers/accel/ivpu/ivpu_mmu_context.c
> +++ b/drivers/accel/ivpu/ivpu_mmu_context.c
> @@ -588,8 +588,8 @@ void ivpu_mmu_context_init(struct ivpu_device *vdev, struct ivpu_mmu_context *ct
> start = vdev->hw->ranges.runtime.start;
> end = vdev->hw->ranges.shave.end;
> } else {
> - start = min_t(u64, vdev->hw->ranges.user.start, vdev->hw->ranges.shave.start);
> - end = max_t(u64, vdev->hw->ranges.user.end, vdev->hw->ranges.dma.end);
> + start = min(vdev->hw->ranges.user.start, vdev->hw->ranges.shave.start);
> + end = max(vdev->hw->ranges.user.end, vdev->hw->ranges.dma.end);
> }
>
> drm_mm_init(&ctx->mm, start, end - start);
Reviewed-by: Karol Wachowski <karol.wachowski@linux.intel.com>
prev parent reply other threads:[~2026-07-16 13:29 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-16 8:33 [PATCH] accel/ivpu: Remove unnecessary min_t()/max_t() usage Andrzej Kacprowski
2026-07-16 13:29 ` Wachowski, Karol [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=27097f78-bd31-402b-89bf-bf06cdd363a2@linux.intel.com \
--to=karol.wachowski@linux.intel.com \
--cc=andrzej.kacprowski@linux.intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jeff.hugo@oss.qualcomm.com \
--cc=lizhi.hou@amd.com \
--cc=oded.gabbay@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.