erofs: correct indentation of an assigned structure inside a function
[linux-2.6-microblaze.git] / fs / erofs / xattr.h
index 3585b84..50966f1 100644 (file)
@@ -46,18 +46,19 @@ extern const struct xattr_handler erofs_xattr_security_handler;
 
 static inline const struct xattr_handler *erofs_xattr_handler(unsigned int idx)
 {
-static const struct xattr_handler *xattr_handler_map[] = {
-       [EROFS_XATTR_INDEX_USER] = &erofs_xattr_user_handler,
+       static const struct xattr_handler *xattr_handler_map[] = {
+               [EROFS_XATTR_INDEX_USER] = &erofs_xattr_user_handler,
 #ifdef CONFIG_EROFS_FS_POSIX_ACL
-       [EROFS_XATTR_INDEX_POSIX_ACL_ACCESS] = &posix_acl_access_xattr_handler,
-       [EROFS_XATTR_INDEX_POSIX_ACL_DEFAULT] =
-               &posix_acl_default_xattr_handler,
+               [EROFS_XATTR_INDEX_POSIX_ACL_ACCESS] =
+                       &posix_acl_access_xattr_handler,
+               [EROFS_XATTR_INDEX_POSIX_ACL_DEFAULT] =
+                       &posix_acl_default_xattr_handler,
 #endif
-       [EROFS_XATTR_INDEX_TRUSTED] = &erofs_xattr_trusted_handler,
+               [EROFS_XATTR_INDEX_TRUSTED] = &erofs_xattr_trusted_handler,
 #ifdef CONFIG_EROFS_FS_SECURITY
-       [EROFS_XATTR_INDEX_SECURITY] = &erofs_xattr_security_handler,
+               [EROFS_XATTR_INDEX_SECURITY] = &erofs_xattr_security_handler,
 #endif
-};
+       };
 
        return idx && idx < ARRAY_SIZE(xattr_handler_map) ?
                xattr_handler_map[idx] : NULL;