struct fat_cache *cache;
 
        while (!list_empty(&i->cache_lru)) {
-               cache = list_entry(i->cache_lru.next, struct fat_cache, cache_list);
+               cache = list_entry(i->cache_lru.next,
+                                  struct fat_cache, cache_list);
                list_del_init(&cache->cache_list);
                i->nr_caches--;
                fat_cache_free(cache);
                if (nr < 0)
                        goto out;
                else if (nr == FAT_ENT_FREE) {
-                       fat_fs_error_ratelimit(sb, "%s: invalid cluster chain"
-                                              " (i_pos %lld)", __func__,
-                                              MSDOS_I(inode)->i_pos);
+                       fat_fs_error_ratelimit(sb,
+                                      "%s: invalid cluster chain (i_pos %lld)",
+                                      __func__,
+                                      MSDOS_I(inode)->i_pos);
                        nr = -EIO;
                        goto out;
                } else if (nr == FAT_ENT_EOF) {