You should always put a space after a ',', so do it for the
KERNEL_VERSION() macro as well.  This makes checkpatch.pl happy also.
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
 #include <linux/version.h>
 #include <linux/gpio.h>
 
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,17,0)
+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)
 static inline void gb_gpiochip_remove(struct gpio_chip *chip)
 {
        gpiochip_remove(chip);
  * ATTRIBUTE_GROUPS showed up in 3.11-rc2, but we need to build on 3.10, so add
  * it here.
  */
-#if LINUX_VERSION_CODE < KERNEL_VERSION(3,11,0)
+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 11, 0)
 #include <linux/sysfs.h>
 
 #define ATTRIBUTE_GROUPS(name)                                 \