diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2016-04-14 11:20:20 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2016-04-14 11:20:20 +0000 |
commit | 86c0216f73caee02dde8786086c594547b9f6b50 (patch) | |
tree | 86921a7fd7c0af1ebaafaf7328df4e43f6f7d9ac /sys/dev/ic | |
parent | a83f0a2f27b718b4ef79f53dcd5eeb5a50f0073a (diff) |
apparently it's spelled NVMe, not NVME
Diffstat (limited to 'sys/dev/ic')
-rw-r--r-- | sys/dev/ic/nvme.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/nvme.c b/sys/dev/ic/nvme.c index 990288365fe..944bbfb663f 100644 --- a/sys/dev/ic/nvme.c +++ b/sys/dev/ic/nvme.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nvme.c,v 1.46 2016/04/14 11:18:32 dlg Exp $ */ +/* $OpenBSD: nvme.c,v 1.47 2016/04/14 11:20:19 dlg Exp $ */ /* * Copyright (c) 2014 David Gwynne <dlg@openbsd.org> @@ -176,7 +176,7 @@ nvme_version(struct nvme_softc *sc, u_int32_t version) return; } - printf(", NVME %s", v); + printf(", NVMe %s", v); } void |