]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
disk: part: fix typo
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Tue, 29 Aug 2017 16:36:59 +0000 (18:36 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 3 Sep 2017 19:30:32 +0000 (15:30 -0400)
%s/Desriptor/Descriptor/g

Fix lines over 80 characters with said typo.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
disk/part_mac.c

index b6c082e7e16d71eb33038d9b185f0e78eead7280..d597dcf00ae01d6f66018b7451d5d60d888e20bf 100644 (file)
@@ -47,7 +47,10 @@ static int part_test_mac(struct blk_desc *dev_desc)
        ulong i, n;
 
        if (part_mac_read_ddb (dev_desc, ddesc)) {
-               /* error reading Driver Desriptor Block, or no valid Signature */
+               /*
+                * error reading Driver Descriptor Block,
+                * or no valid Signature
+                */
                return (-1);
        }
 
@@ -71,7 +74,10 @@ static void part_print_mac(struct blk_desc *dev_desc)
        ldiv_t mb, gb;
 
        if (part_mac_read_ddb (dev_desc, ddesc)) {
-               /* error reading Driver Desriptor Block, or no valid Signature */
+               /*
+                * error reading Driver Descriptor Block,
+                * or no valid Signature
+                */
                return;
        }
 
@@ -153,7 +159,7 @@ static int part_mac_read_ddb(struct blk_desc *dev_desc,
                             mac_driver_desc_t *ddb_p)
 {
        if (blk_dread(dev_desc, 0, 1, (ulong *)ddb_p) != 1) {
-               printf ("** Can't read Driver Desriptor Block **\n");
+               printf("** Can't read Driver Descriptor Block **\n");
                return (-1);
        }