]> git.ipfire.org Git - people/ms/linux.git/blobdiff - fs/exfat/super.c
Merge branch 'for-6.0/dax' into libnvdimm-fixes
[people/ms/linux.git] / fs / exfat / super.c
index 6a4dfe9f31eeeb5bddeeb75d38421548e70f7153..35f0305cd493cc1fd961ca170e5c033c6928dd17 100644 (file)
@@ -464,7 +464,7 @@ static int exfat_read_boot_sector(struct super_block *sb)
         */
        if (p_boot->sect_size_bits < EXFAT_MIN_SECT_SIZE_BITS ||
            p_boot->sect_size_bits > EXFAT_MAX_SECT_SIZE_BITS) {
-               exfat_err(sb, "bogus sector size bits : %u\n",
+               exfat_err(sb, "bogus sector size bits : %u",
                                p_boot->sect_size_bits);
                return -EINVAL;
        }
@@ -473,7 +473,7 @@ static int exfat_read_boot_sector(struct super_block *sb)
         * sect_per_clus_bits could be at least 0 and at most 25 - sect_size_bits.
         */
        if (p_boot->sect_per_clus_bits > EXFAT_MAX_SECT_PER_CLUS_BITS(p_boot)) {
-               exfat_err(sb, "bogus sectors bits per cluster : %u\n",
+               exfat_err(sb, "bogus sectors bits per cluster : %u",
                                p_boot->sect_per_clus_bits);
                return -EINVAL;
        }