static struct completion bind_complete;
 
-#define CONTROLLER_IN_GPU(pci) (((pci)->device == 0x0a0c) || \
+#define IS_HSW_CONTROLLER(pci) (((pci)->device == 0x0a0c) || \
                                ((pci)->device == 0x0c0c) || \
                                ((pci)->device == 0x0d0c) || \
                                ((pci)->device == 0x160c))
 
        if (!acomp || !acomp->ops || !acomp->ops->get_cdclk_freq)
                return; /* only for i915 binding */
-       if (!CONTROLLER_IN_GPU(pci))
+       if (!IS_HSW_CONTROLLER(pci))
                return; /* only HSW/BDW */
 
        cdclk_freq = acomp->ops->get_cdclk_freq(acomp->dev);