1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-01 00:32:04 +02:00

disk: part: fix typo

%s/Desriptor/Descriptor/g

Fix lines over 80 characters with said typo.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
This commit is contained in:
Heinrich Schuchardt
2017-08-29 18:36:59 +02:00
committed by Tom Rini
parent 40fe89c6e8
commit 5eae466ea1

View 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);
}