]> git.sur5r.net Git - u-boot/commitdiff
fs/fat: Remove two statements without effect
authorStefan Brüns <stefan.bruens@rwth-aachen.de>
Sun, 11 Sep 2016 20:51:39 +0000 (22:51 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 23 Sep 2016 12:55:55 +0000 (08:55 -0400)
fatlength is a local variable which is no more used after the assignment.
s_name is not used in the function, save the strncpy.

Signed-off-by: Stefan Brüns <stefan.bruens@rwth-aachen.de>
Acked-by: Lukasz Majewski <l.majewski@samsung.com>
Acked-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Benoît Thébaudeau <benoit.thebaudeau.dev@gmail.com>
fs/fat/fat_write.c

index eb3a9169484ab290268fdf82bd86be76ecd10415..961ccd8e24643e6f626551de0e3356e8a4489957 100644 (file)
@@ -183,7 +183,6 @@ static __u32 get_fatent_value(fsdata *mydata, __u32 entry)
                if (getsize > fatlength)
                        getsize = fatlength;
 
-               fatlength *= mydata->sect_size; /* We want it in bytes now */
                startblock += mydata->fat_sect; /* Offset from start of disk */
 
                /* Write back the fatbuf to the disk */
@@ -326,10 +325,8 @@ fill_dir_slot(fsdata *mydata, dir_entry **dentptr, const char *l_name)
        dir_slot *slotptr = (dir_slot *)get_contents_vfatname_block;
        __u8 counter = 0, checksum;
        int idx = 0, ret;
-       char s_name[16];
 
-       /* Get short file name and checksum value */
-       strncpy(s_name, (*dentptr)->name, 16);
+       /* Get short file name checksum value */
        checksum = mkcksum((*dentptr)->name, (*dentptr)->ext);
 
        do {