Date: Sun, 11 Aug 2019 22:32:53 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r350876 - stable/12/sys/dev/mmc Message-ID: <201908112232.x7BMWrS7033149@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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));
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908112232.x7BMWrS7033149>