[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] hw/arm/smmuv3: Drop unused CDM_VALID() and is_cd_valid()
From: |
Auger Eric |
Subject: |
Re: [PATCH] hw/arm/smmuv3: Drop unused CDM_VALID() and is_cd_valid() |
Date: |
Thu, 25 Mar 2021 15:59:07 +0100 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0 |
Hi Zenghui,
On 3/25/21 3:27 PM, Zenghui Yu wrote:
> They were introduced in commit 9bde7f0674fe ("hw/arm/smmuv3: Implement
> translate callback") but never actually used. Drop them.
>
> Signed-off-by: Zenghui Yu <yuzenghui@huawei.com>
> ---
> hw/arm/smmuv3-internal.h | 7 -------
> 1 file changed, 7 deletions(-)
>
> diff --git a/hw/arm/smmuv3-internal.h b/hw/arm/smmuv3-internal.h
> index b6f7e53b7c..3dac5766ca 100644
> --- a/hw/arm/smmuv3-internal.h
> +++ b/hw/arm/smmuv3-internal.h
> @@ -595,13 +595,6 @@ static inline int pa_range(STE *ste)
> #define CD_A(x) extract32((x)->word[1], 14, 1)
> #define CD_AARCH64(x) extract32((x)->word[1], 9 , 1)
>
> -#define CDM_VALID(x) ((x)->word[0] & 0x1)
> -
> -static inline int is_cd_valid(SMMUv3State *s, STE *ste, CD *cd)
> -{
> - return CD_VALID(cd);
> -}
> -
> /**
> * tg2granule - Decodes the CD translation granule size field according
> * to the ttbr in use
>
Acked-by: Eric Auger <eric.auger@redhat.com>
Thanks
Eric