Re: [PATCH v3] irqchip/gicv3: Add support for Range Selector (RS) feature

From: Timur Tabi
Date: Fri Oct 06 2017 - 10:26:01 EST


On Thu, Oct 5, 2017 at 6:59 PM, Shanker Donthineni
<shankerd@xxxxxxxxxxxxxx> wrote:
> +#define MPIDR_TO_SGI_CLUSTER_ID(mpidr) (mpidr & ~0xFUL)

This should be "((mpidr) & 0xFUL)", just to be safe.