irqchip/gic-v3-its: Fix misuse of GENMASK macro
authorJoe Perches <joe@perches.com>
Wed, 10 Jul 2019 05:04:18 +0000 (22:04 -0700)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 10 Jul 2019 09:04:17 +0000 (11:04 +0200)
Arguments are supposed to be ordered high then low.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Marc Zyngier <marc.zyngier@arm.com>
Link: https://lkml.kernel.org/r/ab5deb4fc3cd604cb620054770b7d00016d736bc.1562734889.git.joe@perches.com
drivers/irqchip/irq-gic-v3-its.c

index 35500801dc2b574cef51de9e8cfcf14d4adc57c4..730fbe0e2a9dfa788b3698cbdcb10b682fe22888 100644 (file)
@@ -185,7 +185,7 @@ static struct its_collection *dev_event_to_col(struct its_device *its_dev,
 
 static struct its_collection *valid_col(struct its_collection *col)
 {
-       if (WARN_ON_ONCE(col->target_address & GENMASK_ULL(0, 15)))
+       if (WARN_ON_ONCE(col->target_address & GENMASK_ULL(15, 0)))
                return NULL;
 
        return col;