svn commit: r350876 - stable/12/sys/dev/mmc

Ian Lepore ian at FreeBSD.org
Sun Aug 11 22:32:53 UTC 2019


Author: ian
Date: Sun Aug 11 22:32:52 2019
New Revision: 350876
URL: https://svnweb.freebsd.org/changeset/base/350876

Log:
  MFC r350231: Correct spelling, partion -> partition.

Modified:
  stable/12/sys/dev/mmc/mmcsd.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/mmc/mmcsd.c
==============================================================================
--- stable/12/sys/dev/mmc/mmcsd.c	Sun Aug 11 22:31:38 2019	(r350875)
+++ stable/12/sys/dev/mmc/mmcsd.c	Sun Aug 11 22:32:52 2019	(r350876)
@@ -575,7 +575,7 @@ mmcsd_add_part(struct mmcsd_softc *sc, u_int type, con
 		    speed / 1000000, (speed / 100000) % 10,
 		    mmcsd_bus_bit_width(dev), sc->max_data);
 	} else if (type == EXT_CSD_PART_CONFIG_ACC_RPMB) {
-		printf("%s: %ju%sB partion %d%s at %s\n", part->name, bytes,
+		printf("%s: %ju%sB partition %d%s at %s\n", part->name, bytes,
 		    unit, type, ro ? " (read-only)" : "",
 		    device_get_nameunit(dev));
 	} else {
@@ -611,12 +611,12 @@ mmcsd_add_part(struct mmcsd_softc *sc, u_int type, con
 			}
 		}
 		if (ext == NULL)
-			printf("%s%d: %ju%sB partion %d%s%s at %s\n",
+			printf("%s%d: %ju%sB partition %d%s%s at %s\n",
 			    part->name, cnt, bytes, unit, type, enh ?
 			    " enhanced" : "", ro ? " (read-only)" : "",
 			    device_get_nameunit(dev));
 		else
-			printf("%s%d: %ju%sB partion %d extended 0x%x "
+			printf("%s%d: %ju%sB partition %d extended 0x%x "
 			    "(%s)%s at %s\n", part->name, cnt, bytes, unit,
 			    type, extattr, ext, ro ? " (read-only)" : "",
 			    device_get_nameunit(dev));


More information about the svn-src-all mailing list