* Each hart context has a vector of interrupt enable bits associated with it.
  * There's one bit for each interrupt source.
  */
-#define ENABLE_BASE                    0x2000
-#define     ENABLE_PER_HART            0x80
+#define CONTEXT_ENABLE_BASE            0x2000
+#define     CONTEXT_ENABLE_SIZE                0x80
 
 /*
  * Each hart context has a set of control registers associated with it.  Right
  * take an interrupt, and a register to claim interrupts.
  */
 #define CONTEXT_BASE                   0x200000
-#define     CONTEXT_PER_HART           0x1000
+#define     CONTEXT_SIZE               0x1000
 #define     CONTEXT_THRESHOLD          0x00
 #define     CONTEXT_CLAIM              0x04
 
 
                cpumask_set_cpu(cpu, &priv->lmask);
                handler->present = true;
-               handler->hart_base =
-                       priv->regs + CONTEXT_BASE + i * CONTEXT_PER_HART;
+               handler->hart_base = priv->regs + CONTEXT_BASE +
+                       i * CONTEXT_SIZE;
                raw_spin_lock_init(&handler->enable_lock);
-               handler->enable_base =
-                       priv->regs + ENABLE_BASE + i * ENABLE_PER_HART;
+               handler->enable_base = priv->regs + CONTEXT_ENABLE_BASE +
+                       i * CONTEXT_ENABLE_SIZE;
                handler->priv = priv;
 done:
                for (hwirq = 1; hwirq <= nr_irqs; hwirq++)