Skip to content

Commit

Permalink
iommu/ipmmu-vmsa: Make IPMMU_CTX_MAX unsigned
Browse files Browse the repository at this point in the history
Make the IPMMU_CTX_MAX constant unsigned, to match the type of
ipmmu_features.number_of_contexts.

This allows to use plain min() instead of type-casting min_t().

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Simon Horman <horms+renesas@verge.net.au>
Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Tested-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
  • Loading branch information
Geert Uytterhoeven authored and Joerg Roedel committed Jun 3, 2019
1 parent 82576aa commit b43e0d8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions drivers/iommu/ipmmu-vmsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#define arm_iommu_detach_device(...) do {} while (0)
#endif

#define IPMMU_CTX_MAX 8
#define IPMMU_CTX_MAX 8U

struct ipmmu_features {
bool use_ns_alias_offset;
Expand Down Expand Up @@ -1060,8 +1060,7 @@ static int ipmmu_probe(struct platform_device *pdev)
if (mmu->features->use_ns_alias_offset)
mmu->base += IM_NS_ALIAS_OFFSET;

mmu->num_ctx = min_t(unsigned int, IPMMU_CTX_MAX,
mmu->features->number_of_contexts);
mmu->num_ctx = min(IPMMU_CTX_MAX, mmu->features->number_of_contexts);

irq = platform_get_irq(pdev, 0);

Expand Down

0 comments on commit b43e0d8

Please sign in to comment.