When cutting and pasting some of the ATTR macros into kernel_ver.h, I
dropped the tabs.  Fix this up and make checkpatch.pl happy.
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
 
 #ifndef __ATTR_WO
 #define __ATTR_WO(_name) {                                             \
-        .attr   = { .name = __stringify(_name), .mode = S_IWUSR },      \
-        .store  = _name##_store,                                        \
+       .attr   = { .name = __stringify(_name), .mode = S_IWUSR },      \
+       .store  = _name##_store,                                        \
 }
 #endif
 
 #ifndef __ATTR_RW
 #define __ATTR_RW(_name) __ATTR(_name, (S_IWUSR | S_IRUGO),            \
-                                        _name##_show, _name##_store)
+                               _name##_show, _name##_store)
 #endif
 
 #ifndef DEVICE_ATTR_RO