]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
fs: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:19:21 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:17 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
37 files changed:
fs/btrfs/ctree.h
fs/btrfs/disk-io.c
fs/btrfs/kernel-shared/btrfs_tree.h
fs/btrfs/volumes.c
fs/ext4/ext4_common.c
fs/ext4/ext4_write.c
fs/jffs2/compr_lzo.c
fs/jffs2/compr_rubin.c
fs/jffs2/jffs2_1pass.c
fs/jffs2/jffs2_private.h
fs/jffs2/mini_inflate.c
fs/ubifs/super.c
fs/ubifs/ubifs.c
fs/yaffs2/yaffs_attribs.c
fs/yaffs2/yaffs_ecc.c
fs/yaffs2/yaffs_flashif.h
fs/yaffs2/yaffs_flashif2.h
fs/yaffs2/yaffs_guts.c
fs/yaffs2/yaffs_guts.h
fs/yaffs2/yaffs_mtdif.c
fs/yaffs2/yaffs_mtdif2.c
fs/yaffs2/yaffs_nandif.c
fs/yaffs2/yaffs_nandif.h
fs/yaffs2/yaffs_osglue.h
fs/yaffs2/yaffs_summary.c
fs/yaffs2/yaffs_summary.h
fs/yaffs2/yaffs_tagscompat.c
fs/yaffs2/yaffs_uboot_glue.c
fs/yaffs2/yaffs_verify.c
fs/yaffs2/yaffs_yaffs2.c
fs/yaffs2/yaffscfg.h
fs/yaffs2/yaffsfs.c
fs/yaffs2/yaffsfs.h
fs/yaffs2/ydirectenv.h
fs/yaffs2/yportenv.h
fs/zfs/dev.c
fs/zfs/zfs.c

index 59439552a45c2a5ac4a0fa77075881a24f9696ad..b7be09d5df839994e39fa96ee6e77f465e66d037 100644 (file)
@@ -461,7 +461,6 @@ static inline u8 *btrfs_dev_extent_chunk_tree_uuid(struct btrfs_dev_extent *dev)
        return (u8 *)((unsigned long)dev + ptr);
 }
 
-
 /* struct btrfs_extent_item */
 BTRFS_SETGET_FUNCS(extent_refs, struct btrfs_extent_item, refs, 64);
 BTRFS_SETGET_STACK_FUNCS(stack_extent_refs, struct btrfs_extent_item, refs, 64);
index e5bfaf461c2bcb6075f7dd9b43a3ba2f0e045462..34d9d535121642c235996861065e766f7daca8eb 100644 (file)
@@ -69,7 +69,6 @@ static int check_tree_block(struct btrfs_fs_info *fs_info,
                                                    btrfs_header_fsid(),
                                                    BTRFS_FSID_SIZE);
 
-
                if (fsid_match) {
                        ret = 0;
                        break;
index d8eff0b9122215b97dfe0f4a4f571545ef742d52..f9dc005c50bc6921d521e067ff90cc993da08374 100644 (file)
 #define BTRFS_LAST_FREE_OBJECTID -256ULL
 #define BTRFS_FIRST_CHUNK_TREE_OBJECTID 256ULL
 
-
 /*
  * The device items go into the chunk tree.
  *
  */
 #define BTRFS_STRING_ITEM_KEY  253
 
-
 /* 32 bytes in various csum fields */
 #define BTRFS_CSUM_SIZE 32
 
@@ -508,7 +506,6 @@ struct btrfs_free_space_header {
 #define BTRFS_SUPER_FLAG_CHANGING_FSID (1ULL << 35)
 #define BTRFS_SUPER_FLAG_CHANGING_FSID_V2 (1ULL << 36)
 
-
 /*
  * Items in the extent tree are used to record the objectid of the
  * owner of the block and the number of references.
@@ -523,7 +520,6 @@ struct btrfs_extent_item_v0 {
        __le32 refs;
 } __attribute__ ((__packed__));
 
-
 #define BTRFS_EXTENT_FLAG_DATA         (1ULL << 0)
 #define BTRFS_EXTENT_FLAG_TREE_BLOCK   (1ULL << 1)
 
@@ -565,7 +561,6 @@ struct btrfs_extent_ref_v0 {
        __le32 count;
 } __attribute__ ((__packed__));
 
-
 /* Dev extents record used space on individual devices.
  *
  * The owner field points back to the chunk allocation mapping tree that
index 8ec545eded7b275b7d2252f30d2daa7971b58faf..5726981b19c063d5248e747856343f245dfc37fd 100644 (file)
@@ -255,7 +255,6 @@ static int device_list_add(struct btrfs_super_block *disk_super,
                }
        }
 
-
        if (found_transid > fs_devices->latest_trans) {
                fs_devices->latest_devid = devid;
                fs_devices->latest_trans = found_transid;
index 857c15d878e4b414607082bd7767c3aa32a8277d..52152a2295a10540ffadda7411062f2f514a2901 100644 (file)
@@ -1205,7 +1205,6 @@ fail:
 
 }
 
-
 static void alloc_single_indirect_block(struct ext2_inode *file_inode,
                                        unsigned int *total_remaining_blocks,
                                        unsigned int *no_blks_reqd)
@@ -2380,7 +2379,6 @@ int ext4fs_mount(void)
        if (le16_to_cpu(data->sblock.magic) != EXT2_MAGIC)
                goto fail_noerr;
 
-
        if (le32_to_cpu(data->sblock.revision_level) == 0) {
                fs->inodesz = 128;
                fs->gdsize = 32;
index 38da3923c477cf2c9811e874c795bf0c89532117..a2dfff8197928a1e885fb1151938ef6e2b7165df 100644 (file)
@@ -20,7 +20,6 @@
  * ext4write : Based on generic ext4 protocol.
  */
 
-
 #include <blk.h>
 #include <log.h>
 #include <malloc.h>
@@ -746,7 +745,6 @@ void ext4fs_deinit(void)
                fs->inode_bmaps = NULL;
        }
 
-
        free(fs->gdtable);
        fs->gdtable = NULL;
        /*
index e648ec4fb2e2cf2dc97fd1bf511fc28a9604183f..892766e12eb781760cb3ca53f9644fb80a846661 100644 (file)
@@ -65,7 +65,6 @@
 
 */
 
-
 #include <config.h>
 #include <linux/stddef.h>
 #include <jffs2/jffs2.h>
index 9ff2217738261e210d19f5d135e12b266bb5c1ea..88b6584599796c0d6aca46edcc787c164e91cc79 100644 (file)
@@ -42,7 +42,6 @@
 #include <jffs2/jffs2.h>
 #include <jffs2/compr_rubin.h>
 
-
 void rubin_do_decompress(unsigned char *bits, unsigned char *in,
                         unsigned char *page_out, __u32 destlen)
 {
index 5b7d7f4ae881cee34d97e000b8af651446e2bd0b..b5f74d65017a08615db25762b41296a172bc9563 100644 (file)
  * it should probably be dumped and replaced by something like jffs2reader!
  */
 
-
 #include <config.h>
 #include <malloc.h>
 #include <div64.h>
 
 #include "jffs2_private.h"
 
-
 #define        NODE_CHUNK      1024    /* size of memory allocation chunk in b_nodes */
 #define        SPIN_BLKSIZE    18      /* spin after having scanned 1<<BLKSIZE bytes */
 
 #undef DEBUG_FRAGMENTS         /* print fragment list after scan */
 #undef DEBUG                   /* enable debugging messages */
 
-
 #ifdef  DEBUG
 # define DEBUGF(fmt,args...)   printf(fmt ,##args)
 #else
@@ -370,14 +367,12 @@ static void *get_node_mem_onenand(u32 off, void *ext_buf)
        return ret;
 }
 
-
 static void put_fl_mem_onenand(void *buf)
 {
        free(buf);
 }
 #endif
 
-
 #if defined(CONFIG_CMD_FLASH)
 #include <flash.h>
 
@@ -414,7 +409,6 @@ static inline void *get_node_mem_nor(u32 off, void *ext_buf)
 }
 #endif
 
-
 /*
  * Generic jffs2 raw memory and node read routines.
  *
@@ -515,7 +509,6 @@ struct mem_block {
        struct b_node nodes[NODE_CHUNK];
 };
 
-
 static void
 free_nodes(struct b_list *list)
 {
@@ -1854,7 +1847,6 @@ jffs2_1pass_build_lists(struct part_info * part)
        return 1;
 }
 
-
 static u32
 jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
 {
@@ -1883,7 +1875,6 @@ jffs2_1pass_fill_info(struct b_lists * pL, struct b_jffs2_info * piL)
        return 0;
 }
 
-
 static struct b_lists *
 jffs2_get_list(struct part_info * part, const char *who)
 {
@@ -1899,7 +1890,6 @@ jffs2_get_list(struct part_info * part, const char *who)
        return (struct b_lists *)part->jffs2_priv;
 }
 
-
 /* Print directory / file contents */
 u32
 jffs2_1pass_ls(struct part_info * part, const char *fname)
@@ -1916,7 +1906,6 @@ jffs2_1pass_ls(struct part_info * part, const char *fname)
                return 0;
        }
 
-
 #if 0
        putLabeledWord("found file at inode = ", inode);
        putLabeledWord("read_inode returns = ", ret);
@@ -1925,7 +1914,6 @@ jffs2_1pass_ls(struct part_info * part, const char *fname)
        return ret;
 }
 
-
 /* Load a file from flash into memory. fname can be a full path */
 u32
 jffs2_1pass_load(char *dest, struct part_info * part, const char *fname)
index 65d19a76f97cc86afc0d90dad4b1479974adab33..9284ab5c2c1dd8ab9fa1a23bcb1f6f0fe1f63b07 100644 (file)
@@ -3,7 +3,6 @@
 
 #include <jffs2/jffs2.h>
 
-
 struct b_node {
        u32 offset;
        struct b_node *next;
index 3072eedd8c164a0a14fe4ea231fecd7a47b04b38..12ab180d2f004726c58f0221d7ba88c5f314627d 100644 (file)
@@ -336,11 +336,9 @@ static void decompress_fixed(struct bitstream *stream, unsigned char *dest)
        cramfs_memset(distance->lengths, 5, 32);
        distance->count[5] = 32;
 
-
        fill_code_tables(lengths);
        fill_code_tables(distance);
 
-
        decompress_huffman(stream, dest);
 }
 
index 788f88f0495278d36ac112397a70cf6c0d721a2c..d8d78a2d3d60fc841a7e5f38f50c72c8cac78b0a 100644 (file)
@@ -2452,7 +2452,6 @@ retry:
 
 EXPORT_SYMBOL(sget);
 
-
 static struct dentry *ubifs_mount(struct file_system_type *fs_type, int flags,
                        const char *name, void *data)
 {
index f0ea7e5c1682d8a9866e7a38b4793e421e7f3f0d..048730db7ff74c7a844abe6bdb705971e36f51cd 100644 (file)
@@ -110,7 +110,6 @@ static struct ubifs_compressor zstd_compr = {
 /* All UBIFS compressors */
 struct ubifs_compressor *ubifs_compressors[UBIFS_COMPR_TYPES_CNT] = {NULL};
 
-
 #ifdef __UBOOT__
 
 struct crypto_comp {
index 69664268e145442b55ac5b63def7562a4ff445ce..81927cb9437a554104169d74da103c96db4e4b26 100644 (file)
@@ -13,7 +13,6 @@
 
 #include "yaffs_attribs.h"
 
-
 void yaffs_load_attribs(struct yaffs_obj *obj, struct yaffs_obj_hdr *oh)
 {
        obj->yst_uid = oh->yst_uid;
@@ -24,7 +23,6 @@ void yaffs_load_attribs(struct yaffs_obj *obj, struct yaffs_obj_hdr *oh)
        obj->yst_rdev = oh->yst_rdev;
 }
 
-
 void yaffs_load_attribs_oh(struct yaffs_obj_hdr *oh, struct yaffs_obj *obj)
 {
 #ifdef CONFIG_YAFFS_WINCE
index 9294107c150d261bbb6c90c8c78b6590ba4b97a4..0860a3c7843107a7df6f16beee801a21e974e922 100644 (file)
@@ -67,7 +67,6 @@ static const unsigned char column_parity_table[] = {
        0x69, 0x3c, 0x30, 0x65, 0x0c, 0x59, 0x55, 0x00,
 };
 
-
 /* Calculate the ECC for a 256-byte block of data */
 void yaffs_ecc_calc(const unsigned char *data, unsigned char *ecc)
 {
index e6e8979ee624b2db4eb88ef97d76ab4db6aee7b6..886901a0ff51c8158baa6345945e19d71c5df6c7 100644 (file)
@@ -16,7 +16,6 @@
 #ifndef __YAFFS_FLASH_H__
 #define __YAFFS_FLASH_H__
 
-
 #include "yaffs_guts.h"
 int yflash_EraseBlockInNAND(struct yaffs_dev *dev, int blockNumber);
 int yflash_WriteChunkToNAND(struct yaffs_dev *dev, int nand_chunk,
index cfdbde9dc8f519adc066701d9f4439c77b076d18..c69862668b182ba28f251c1ffe2512ab9c496661 100644 (file)
@@ -16,7 +16,6 @@
 #ifndef __YAFFS_FLASH2_H__
 #define __YAFFS_FLASH2_H__
 
-
 #include "yaffs_guts.h"
 int yflash2_EraseBlockInNAND(struct yaffs_dev *dev, int blockNumber);
 int yflash2_WriteChunkToNAND(struct yaffs_dev *dev, int nand_chunk,
index e13a73298b4ccffc385dd1cb730001c5482cc1fd..e89d02513c19d0e459ca7923b1a2e93c15b45d22 100644 (file)
@@ -41,8 +41,6 @@
 static int yaffs_wr_data_obj(struct yaffs_obj *in, int inode_chunk,
                             const u8 *buffer, int n_bytes, int use_reserve);
 
-
-
 /* Function to calculate chunk and offset */
 
 void yaffs_addr_to_chunk(struct yaffs_dev *dev, loff_t addr,
@@ -355,7 +353,6 @@ static int yaffs_verify_chunk_written(struct yaffs_dev *dev,
        return retval;
 }
 
-
 int yaffs_check_alloc_available(struct yaffs_dev *dev, int n_chunks)
 {
        int reserved_chunks;
@@ -1989,7 +1986,6 @@ static struct yaffs_obj *yaffs_create_fake_dir(struct yaffs_dev *dev,
 
 }
 
-
 static void yaffs_init_tnodes_and_objs(struct yaffs_dev *dev)
 {
        int i;
@@ -2233,8 +2229,6 @@ struct yaffs_obj *yaffs_link_obj(struct yaffs_obj *parent, const YCHAR * name,
 
 }
 
-
-
 /*---------------------- Block Management and Page Allocation -------------*/
 
 static void yaffs_deinit_blocks(struct yaffs_dev *dev)
@@ -2292,7 +2286,6 @@ static int yaffs_init_blocks(struct yaffs_dev *dev)
        if (!dev->chunk_bits)
                goto alloc_error;
 
-
        memset(dev->block_info, 0, n_blocks * sizeof(struct yaffs_block_info));
        memset(dev->chunk_bits, 0, dev->chunk_bit_stride * n_blocks);
        return YAFFS_OK;
@@ -2302,7 +2295,6 @@ alloc_error:
        return YAFFS_FAIL;
 }
 
-
 void yaffs_block_became_dirty(struct yaffs_dev *dev, int block_no)
 {
        struct yaffs_block_info *bi = yaffs_get_block_info(dev, block_no);
@@ -3036,8 +3028,6 @@ static int yaffs_wr_data_obj(struct yaffs_obj *in, int inode_chunk,
 
 }
 
-
-
 static int yaffs_do_xattrib_mod(struct yaffs_obj *obj, int set,
                                const YCHAR *name, const void *value, int size,
                                int flags)
@@ -3396,7 +3386,6 @@ int yaffs_update_oh(struct yaffs_obj *in, const YCHAR *name, int force,
                bi->has_shrink_hdr = 1;
        }
 
-
        return new_chunk_id;
 }
 
@@ -3804,7 +3793,6 @@ int yaffs_flush_file(struct yaffs_obj *in, int update_time, int data_sync)
                                YAFFS_OK : YAFFS_FAIL;
 }
 
-
 /* yaffs_del_file deletes the whole file data
  * and the inode associated with the file.
  * It does not delete the links associated with the file.
@@ -4306,7 +4294,6 @@ static void yaffs_empty_l_n_f(struct yaffs_dev *dev)
        yaffs_del_dir_contents(dev->lost_n_found);
 }
 
-
 struct yaffs_obj *yaffs_find_by_name(struct yaffs_obj *directory,
                                     const YCHAR *name)
 {
index e3558c5a6d04385492eb896e2c2cf429d5547322..f4e7f796bd1effad8d2816ec9066865c557f41ca 100644 (file)
@@ -64,8 +64,6 @@
 #define YAFFS_MIN_YAFFS2_CHUNK_SIZE    1024
 #define YAFFS_MIN_YAFFS2_SPARE_SIZE    32
 
-
-
 #define YAFFS_ALLOCATION_NOBJECTS      100
 #define YAFFS_ALLOCATION_NTNODES       100
 #define YAFFS_ALLOCATION_NLINKS                100
@@ -155,7 +153,6 @@ union yaffs_tags_union {
        u8 as_bytes[8];
 };
 
-
 /* Stuff used for extended tags in YAFFS2 */
 
 enum yaffs_ecc_result {
@@ -969,5 +966,4 @@ void yaffs_oh_size_load(struct yaffs_obj_hdr *oh, loff_t fsize);
 loff_t yaffs_oh_to_size(struct yaffs_obj_hdr *oh);
 loff_t yaffs_max_file_size(struct yaffs_dev *dev);
 
-
 #endif
index 0eec22bc4a543d3facd2cb7cf9060c00f28613c0..d4af0a329ee6e50eed5902859c37dab940fb92cc 100644 (file)
@@ -15,7 +15,6 @@
 
 #include "yportenv.h"
 
-
 #include "yaffs_mtdif.h"
 
 #include <linux/mtd/mtd.h>
@@ -23,7 +22,6 @@
 #include <linux/time.h>
 #include <linux/mtd/rawnand.h>
 
-
 static inline void translate_spare2oob(const struct yaffs_spare *spare, u8 *oob)
 {
        oob[0] = spare->tb0;
@@ -57,7 +55,6 @@ static inline void translate_oob2spare(struct yaffs_spare *spare, u8 *oob)
        nspare->eccres1 = nspare->eccres2 = 0; /* FIXME */
 }
 
-
 int nandmtd_WriteChunkToNAND(struct yaffs_dev *dev, int chunkInNAND,
                             const u8 *data, const struct yaffs_spare *spare)
 {
@@ -148,7 +145,6 @@ int nandmtd_EraseBlockInNAND(struct yaffs_dev *dev, int blockNumber)
 
        /* Todo finish off the ei if required */
 
-
        retval = mtd_erase(mtd, &ei);
 
        if (retval == 0)
index 2bf171f99f132345cc1a29bee73370e8721638a8..f21f15bfbd83678ac8400d55f37ff24ee70c3d32 100644 (file)
@@ -32,7 +32,6 @@
 #define yaffs_dev_to_mtd(dev) ((struct mtd_info *)((dev)->driver_context))
 #define yaffs_dev_to_lc(dev) ((struct yaffs_linux_context *)((dev)->os_context))
 
-
 /* NB For use with inband tags....
  * We assume that the data buffer is of size total_bytes_per_chunk so
  * that we can also use it to load the tags.
@@ -169,7 +168,6 @@ int nandmtd2_read_chunk_tags(struct yaffs_dev *dev, int nand_chunk,
                return YAFFS_FAIL;
 }
 
-
 int nandmtd2_MarkNANDBlockBad(struct yaffs_dev *dev, int blockNo)
 {
        struct mtd_info *mtd = (struct mtd_info *)(dev->driver_context);
index ee5a17206072e70a714b38c21127df84459e6b33..632f4275518ff72d07b3098c15a0049dec6e6ebd 100644 (file)
@@ -15,7 +15,6 @@
 #include "yaffs_guts.h"
 #include <malloc.h>
 
-
 #include "yaffs_nandif.h"
 #include "yaffs_packedtags2.h"
 
@@ -24,7 +23,6 @@
 #include "yaffs_trace.h"
 #include "yaffsfs.h"
 
-
 /* NB For use with inband tags....
  * We assume that the data buffer is of size totalBytersPerChunk so that
  * we can also use it to load the tags.
@@ -44,7 +42,6 @@ int ynandif_WriteChunkWithTagsToNAND(struct yaffs_dev *dev, int nand_chunk,
                "nandmtd2_WriteChunkWithTagsToNAND chunk %d data %p tags %p",
                nand_chunk, data, tags);
 
-
        /* For yaffs2 writing there must be both data and tags.
         * If we're using inband tags, then the tags are stuffed into
         * the end of the data buffer.
@@ -152,7 +149,6 @@ int ynandif_EraseBlockInNAND(struct yaffs_dev *dev, int blockId)
 
 }
 
-
 static int ynandif_IsBlockOk(struct yaffs_dev *dev, int blockId)
 {
        struct ynandif_Geometry *geometry = (struct ynandif_Geometry *)(dev->driver_context);
@@ -186,7 +182,6 @@ int ynandif_QueryNANDBlock(struct yaffs_dev *dev, int blockId,
        return YAFFS_OK;
 }
 
-
 int ynandif_InitialiseNAND(struct yaffs_dev *dev)
 {
        struct ynandif_Geometry *geometry = (struct ynandif_Geometry *)(dev->driver_context);
@@ -205,7 +200,6 @@ int ynandif_Deinitialise_flash_fn(struct yaffs_dev *dev)
        return YAFFS_OK;
 }
 
-
 struct yaffs_dev *
        yaffs_add_dev_from_geometry(const YCHAR *name,
                                        const struct ynandif_Geometry *geometry)
index e780f7f3b40cd085f8ef5a20beda1db2dc9d3a11..6454cea20a019f615469c202baec23469ac7c12c 100644 (file)
@@ -13,7 +13,6 @@
  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
  */
 
-
 #ifndef __YNANDIF_H__
 #define __YNANDIF_H__
 
@@ -61,5 +60,4 @@ struct yaffs_dev *
        yaffs_add_dev_from_geometry(const YCHAR *name,
                                        const struct ynandif_Geometry *geometry);
 
-
 #endif
index f629a4b59e8a76d3c9f73a7f4bbc78de5d2743de..c2bb682c92f0e260943ec54ad6d9c8715cfc9fca 100644 (file)
  * a direct interface.
  */
 
-
 #ifndef __YAFFS_OSGLUE_H__
 #define __YAFFS_OSGLUE_H__
 
-
 #include "yportenv.h"
 
 void yaffsfs_Lock(void);
@@ -37,5 +35,4 @@ void yaffsfs_free(void *ptr);
 
 void yaffsfs_OSInitialisation(void);
 
-
 #endif
index 4f9449a8447237af72fe7129dbfae6a35edd8296..2efd73a0223a7917ddb8c70ec2a5a8083d6f1b9f 100644 (file)
@@ -52,7 +52,6 @@ struct yaffs_summary_header {
        unsigned sum;           /* Just add up all the bytes in the tags */
 };
 
-
 static void yaffs_summary_clear(struct yaffs_dev *dev)
 {
        if (!dev->sum_tags)
@@ -61,7 +60,6 @@ static void yaffs_summary_clear(struct yaffs_dev *dev)
                sizeof(struct yaffs_summary_tags));
 }
 
-
 void yaffs_summary_deinit(struct yaffs_dev *dev)
 {
        kfree(dev->sum_tags);
@@ -168,11 +166,9 @@ static int yaffs_summary_write(struct yaffs_dev *dev, int blk)
        } while (result == YAFFS_OK && n_bytes > 0);
        yaffs_release_temp_buffer(dev, buffer);
 
-
        if (result == YAFFS_OK)
                bi->has_summary = 1;
 
-
        return result;
 }
 
index be141d0733696b59cd55620e1d4f652b15fabf8f..e2e027b9257b5b1cf9da136fdcad8a0f93f2c5c7 100644 (file)
@@ -18,7 +18,6 @@
 
 #include "yaffs_packedtags2.h"
 
-
 int yaffs_summary_init(struct yaffs_dev *dev);
 void yaffs_summary_deinit(struct yaffs_dev *dev);
 
@@ -33,5 +32,4 @@ int yaffs_summary_read(struct yaffs_dev *dev,
                        int blk);
 void yaffs_summary_gc(struct yaffs_dev *dev, int blk);
 
-
 #endif
index 9ac5896da37713d51875c8f9bd23b6d4e434fa88..1a367fe69850137b54b02d9316bcca0c12558b62 100644 (file)
@@ -19,7 +19,6 @@
 
 static void yaffs_handle_rd_data_error(struct yaffs_dev *dev, int nand_chunk);
 
-
 /********** Tags ECC calculations  *********/
 
 void yaffs_calc_ecc(const u8 *data, struct yaffs_spare *spare)
index deddbaac51eba4d46d1a251ae13a24914ce8113b..c52362b3eda2781cfd077c007964bd613bc25ecb 100644 (file)
@@ -40,7 +40,6 @@
 unsigned yaffs_trace_mask = 0x0; /* Disable logging */
 static int yaffs_errno;
 
-
 void yaffs_bug_fn(const char *fn, int n)
 {
        printf("yaffs bug at %s:%d\n", fn, n);
@@ -66,7 +65,6 @@ int yaffsfs_GetLastError(void)
        return yaffs_errno;
 }
 
-
 int yaffsfs_GetError(void)
 {
        return yaffs_errno;
@@ -100,7 +98,6 @@ void yaffsfs_LocalInitialisation(void)
        /* No locking used */
 }
 
-
 static const char *yaffs_file_type_str(struct yaffs_stat *stat)
 {
        switch (stat->st_mode & S_IFMT) {
@@ -305,7 +302,6 @@ void make_a_file(char *yaffsName, char bval, int sizeOfFile)
 
        } while (sizeOfFile > 0);
 
-
        yaffs_close(outh);
 }
 
@@ -341,7 +337,6 @@ void cmd_yaffs_mount(char *mp)
                        yaffsfs_GetError(), yaffs_error_str());
 }
 
-
 void cmd_yaffs_umount(char *mp)
 {
        if (yaffs_unmount(mp) == -1)
@@ -354,13 +349,11 @@ void cmd_yaffs_write_file(char *yaffsName, char bval, int sizeOfFile)
        make_a_file(yaffsName, bval, sizeOfFile);
 }
 
-
 void cmd_yaffs_read_file(char *fn)
 {
        read_a_file(fn);
 }
 
-
 void cmd_yaffs_mread_file(char *fn, char *addr)
 {
        int h;
@@ -381,7 +374,6 @@ void cmd_yaffs_mread_file(char *fn, char *addr)
        yaffs_close(h);
 }
 
-
 void cmd_yaffs_mwrite_file(char *fn, char *addr, int size)
 {
        int outh;
@@ -395,7 +387,6 @@ void cmd_yaffs_mwrite_file(char *fn, char *addr, int size)
        yaffs_close(outh);
 }
 
-
 void cmd_yaffs_ls(const char *mountpt, int longlist)
 {
        int i;
@@ -429,7 +420,6 @@ void cmd_yaffs_ls(const char *mountpt, int longlist)
        yaffs_closedir(d);
 }
 
-
 void cmd_yaffs_mkdir(const char *dir)
 {
        int retval = yaffs_mkdir(dir, 0);
index 3fef28bdcb08e0acf535e184107a1288a72f3c46..f10fe03bc429cc8e789fac0c558f963368421f2e 100644 (file)
@@ -240,7 +240,6 @@ void yaffs_verify_file(struct yaffs_obj *obj)
        dev = obj->my_dev;
        obj_id = obj->obj_id;
 
-
        /* Check file size is consistent with tnode depth */
        yaffs_addr_to_chunk(dev, obj->variant.file_variant.file_size,
                                &last_chunk, &offset_in_chunk);
index 14d497eb99b04755eff4ec6bb377d0a4d8567419..627a701a45b1d8d3bbc48be19d6e6e8e139f421f 100644 (file)
@@ -592,7 +592,6 @@ static int yaffs2_rd_checkpt_objs(struct yaffs_dev *dev)
        int done = 0;
        LIST_HEAD(hard_list);
 
-
        while (ok && !done) {
                ok = (yaffs2_checkpt_rd(dev, &cp, sizeof(cp)) == sizeof(cp));
                if (cp.struct_type != sizeof(cp)) {
index 718504eeac548cda9c3b518db00b15062328defb..4f723d6480cd2dc97fcfd1902a7229a9b6726345 100644 (file)
  * a direct interface.
  */
 
-
 #ifndef __YAFFSCFG_H__
 #define __YAFFSCFG_H__
 
-
 #include "yportenv.h"
 
 #define YAFFSFS_N_HANDLES      100
 #define YAFFSFS_N_DSC          20
 
-
 struct yaffsfs_DeviceConfiguration {
        const YCHAR *prefix;
        struct yaffs_dev *dev;
 };
 
-
 #endif
index d615f02d3fcd2ceaa6eb68b09b7f084258827cd5..c4909af9fc582a24d545d483fb21ee1cdc716601 100644 (file)
@@ -82,7 +82,6 @@ struct yaffsfs_Handle {
        short int useCount;
 };
 
-
 struct yaffsfs_DirSearchContxt {
        struct yaffs_dirent de; /* directory entry */
        YCHAR name[NAME_MAX + 1];       /* name of directory being searched */
index f2c7666625cfbf91b2a7c3934967975a2094f52d..e14f41c63ee5b529c7f76aa467202f23f925b3cf 100644 (file)
  * a direct interface.
  */
 
-
 #ifndef __YAFFSFS_H__
 #define __YAFFSFS_H__
 
 #include "yaffscfg.h"
 #include "yportenv.h"
 
-
 #ifndef NAME_MAX
 #define NAME_MAX       256
 #endif
 
 #define YAFFS_MAX_FILE_SIZE (0x800000000LL - 1)
 
-
 struct yaffs_dirent {
        long d_ino;                     /* inode number */
        off_t d_off;                    /* offset to this dirent */
@@ -44,8 +41,6 @@ struct yaffs_dirent {
 
 typedef struct opaque_structure yaffs_DIR;
 
-
-
 struct yaffs_stat {
        int             st_dev;         /* device */
        int             st_ino;         /* inode */
@@ -69,13 +64,11 @@ struct yaffs_stat {
 #endif
 };
 
-
 struct yaffs_utimbuf {
        unsigned long actime;
        unsigned long modtime;
 };
 
-
 int yaffs_open(const YCHAR *path, int oflag, int mode) ;
 
 int yaffs_close(int fd) ;
@@ -108,7 +101,6 @@ int yaffs_fstat(int fd, struct yaffs_stat *buf) ;
 int yaffs_utime(const YCHAR *path, const struct yaffs_utimbuf *buf);
 int yaffs_futime(int fd, const struct yaffs_utimbuf *buf);
 
-
 int yaffs_setxattr(const char *path, const char *name,
                        const void *data, int size, int flags);
 int yaffs_lsetxattr(const char *path, const char *name,
@@ -131,7 +123,6 @@ int yaffs_listxattr(const char *path, char *list, int size);
 int yaffs_llistxattr(const char *path, char *list, int size);
 int yaffs_flistxattr(int fd, char *list, int size);
 
-
 #ifdef CONFIG_YAFFS_WINCE
 
 int yaffs_set_wince_times(int fd,
@@ -164,7 +155,6 @@ int yaffs_unmount(const YCHAR *path) ;
 int yaffs_unmount2(const YCHAR *path, int force);
 int yaffs_remount(const YCHAR *path, int force, int read_only);
 
-
 int yaffs_sync(const YCHAR *path) ;
 
 int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath);
index 790f8512f74232376c58dda0b7754d046e4b18e7..14b13ce2bd48ffd52bdae6c858f1f382baf07b13 100644 (file)
@@ -27,8 +27,6 @@
 
 void yaffs_bug_fn(const char *file_name, int line_no);
 
-
-
 #define YCHAR char
 #define YUCHAR unsigned char
 #define _Y(x) x
@@ -45,7 +43,6 @@ void yaffs_bug_fn(const char *file_name, int line_no);
 #define yaffs_strncmp(a, b, c) strncmp(a, b, c)
 #endif
 
-
 void yaffs_qsort(void *aa, size_t n, size_t es,
                int (*cmp)(const void *, const void *));
 
@@ -62,7 +59,6 @@ void yaffs_qsort(void *aa, size_t n, size_t es,
                printf("yaffs: " fmt "\n", ##__VA_ARGS__); \
 } while (0)
 
-
 #define YAFFS_LOSTNFOUND_NAME          "lost+found"
 #define YAFFS_LOSTNFOUND_PREFIX                "obj"
 
index 081391a1d0fe5867e5019cab5725f85db3be2c39..b23042948db5d51b30420a5e16c291d513c3b59c 100644 (file)
@@ -13,7 +13,6 @@
  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
  */
 
-
 #ifndef __YPORTENV_H__
 #define __YPORTENV_H__
 
@@ -27,11 +26,9 @@ typedef unsigned short u16;
 typedef unsigned u32;
 #endif
 
-
 #ifdef CONFIG_YAFFS_PROVIDE_DEFS
 /* File types */
 
-
 #define DT_UNKNOWN     0
 #define DT_FIFO                1
 #define DT_CHR         2
@@ -42,7 +39,6 @@ typedef unsigned u32;
 #define DT_SOCK                12
 #define DT_WHT         14
 
-
 /*
  * Attribute flags.
  * These are or-ed together to select what has been changed.
@@ -69,13 +65,10 @@ struct iattr {
 
 #endif
 
-
-
 #if defined CONFIG_YAFFS_WINCE
 
 #include "ywinceenv.h"
 
-
 #elif defined CONFIG_YAFFS_DIRECT
 
 /* Direct interface */
@@ -215,7 +208,6 @@ struct iattr {
 #define ELOOP  40
 #endif
 
-
 /* Mode flags */
 
 #ifndef S_IFMT
@@ -258,7 +250,6 @@ struct iattr {
 #define S_ISCHR(m)     (((m) & S_IFMT) == S_IFCHR)
 #define S_ISFIFO(m)    (((m) & S_IFMT) == S_IFIFO)
 
-
 #ifndef S_IREAD
 #define S_IREAD                0000400
 #endif
index 722c6a86176c3618e0e310bda6f5a3f5adb47228..0eceafab2af1084a293dd3f7540c4b955b9a0c02 100644 (file)
@@ -7,7 +7,6 @@
  *     Sysgo AG, <www.elinos.com>, Pavel Bartusek <pba@sysgo.com>
  */
 
-
 #include <config.h>
 #include <fs_internal.h>
 #include <zfs_common.h>
index 9906d553fa61df9aad7056f870d8546a0ccfbfb8..410a61aa611e59a24237c4ae9f154567126283bf 100644 (file)
@@ -50,10 +50,8 @@ struct blk_desc *zfs_dev_desc;
 #include <zfs/dsl_dir.h>
 #include <zfs/dsl_dataset.h>
 
-
 #define        ZPOOL_PROP_BOOTFS               "bootfs"
 
-
 /*
  * For nvlist manipulation. (from nvpair.h)
  */
@@ -66,7 +64,6 @@ struct blk_desc *zfs_dev_desc;
 #define        DATA_TYPE_NVLIST        19
 #define        DATA_TYPE_NVLIST_ARRAY  20
 
-
 /*
  * Macros to get fields in a bp or DVA.
  */
@@ -120,7 +117,6 @@ struct blk_desc *zfs_dev_desc;
        ((zap_leaf_chunk_t *)(l->l_hash + ZAP_LEAF_HASH_NUMENTRIES(bs)))[idx]
 #define        ZAP_LEAF_ENTRY(l, bs, idx) (&ZAP_LEAF_CHUNK(l, bs, idx).l_entry)
 
-
 /*
  * Decompression Entry - lzjb
  */
@@ -128,8 +124,6 @@ struct blk_desc *zfs_dev_desc;
 #define        NBBY    8
 #endif
 
-
-
 typedef int zfs_decomp_func_t(void *s_start, void *d_start,
                                                          uint32_t s_len, uint32_t d_len);
 typedef struct decomp_entry {
@@ -176,9 +170,6 @@ struct zfs_data {
 
 };
 
-
-
-
 static int
 zlib_decompress(void *s, void *d,
                                uint32_t slen, uint32_t dlen)
@@ -206,8 +197,6 @@ static decomp_entry_t decomp_table[ZIO_COMPRESS_FUNCTIONS] = {
        {"gzip-9", zlib_decompress},  /* ZIO_COMPRESS_GZIP9 */
 };
 
-
-
 static int zio_read_data(blkptr_t *bp, zfs_endian_t endian,
                                                 void *buf, struct zfs_data *data);
 
@@ -231,7 +220,6 @@ zfs_log2(uint64_t num)
        return i;
 }
 
-
 /* Checksum Functions */
 static void
 zio_checksum_off(const void *buf __attribute__ ((unused)),
@@ -812,7 +800,6 @@ zap_leaf_array_get(zap_leaf_phys_t *l, zfs_endian_t endian, int blksft,
        return ZFS_ERR_NONE;
 }
 
-
 /*
  * Given a zap_leaf_phys_t, walk thru the zap leaf chunks to get the
  * value for the property "name".
@@ -879,7 +866,6 @@ zap_leaf_lookup(zap_leaf_phys_t *l, zfs_endian_t endian,
        return ZFS_ERR_FILE_NOT_FOUND;
 }
 
-
 /* Verify if this is a fat zap header block */
 static int
 zap_verify(zap_phys_t *zap)
@@ -1029,7 +1015,6 @@ fzap_iterate(dnode_end_t *zap_dnode, zap_phys_t *zap,
        return 0;
 }
 
-
 /*
  * Read in the data of a zap object and find the value for a matching
  * property name.
@@ -1104,7 +1089,6 @@ zap_iterate(dnode_end_t *zap_dnode,
        return 0;
 }
 
-
 /*
  * Get the dnode of an object number from the metadnode of an object set.
  *
@@ -1299,7 +1283,6 @@ dnode_get_path(dnode_end_t *mdn, const char *path_in, dnode_end_t *dn,
        return err;
 }
 
-
 /*
  * Given a MOS metadnode, get the metadnode of a given filesystem name (fsname),
  * e.g. pool/rootfs, or a given object number (obj), e.g. the object number
@@ -1434,7 +1417,6 @@ dnode_get_fullpath(const char *fullpath, dnode_end_t *mdn,
                           fsname, snapname, filename);
        }
 
-
        err = get_filesystem_dnode(&(data->mos), fsname, dn, data);
 
        if (err) {
@@ -2336,7 +2318,6 @@ zfs_ls(device_t device, const char *path,
                        return err;
                }
 
-
                zap_iterate(&dn, iterate_zap_fs, data);
 
                err = dnode_get(&(data->mos), headobj, DMU_OT_DSL_DATASET, &dn, data);