Date: Fri, 2 Aug 2019 04:04:19 +0000 (UTC) From: Alexander Motin <mav@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r350530 - head/sys/dev/nvme Message-ID: <201908020404.x7244Jdm027254@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mav Date: Fri Aug 2 04:04:18 2019 New Revision: 350530 URL: https://svnweb.freebsd.org/changeset/base/350530 Log: Fix typo in r350529. MFC after: 2 weeks Modified: head/sys/dev/nvme/nvme.h Modified: head/sys/dev/nvme/nvme.h ============================================================================== --- head/sys/dev/nvme/nvme.h Fri Aug 2 03:43:24 2019 (r350529) +++ head/sys/dev/nvme/nvme.h Fri Aug 2 04:04:18 2019 (r350530) @@ -1695,7 +1695,7 @@ void nvme_health_information_page_swapbytes(struct nvm for (i = 0; i < 8; i++) s->temp_sensor[i] = le16toh(s->temp_sensor[i]); s->tmt1tc = le32toh(s->tmt1tc); - s->tmt1tc = le32toh(s->tmt2tc); + s->tmt2tc = le32toh(s->tmt2tc); s->ttftmt1 = le32toh(s->ttftmt1); s->ttftmt2 = le32toh(s->ttftmt2); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908020404.x7244Jdm027254>