drm/nouveau: Fix spelling mistake "endianess" -> "endianness"

There is a spelling mistake in a nvdev_error error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Lyude Paul <lyude@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220315221929.2959700-1-colin.i.king@gmail.com
This commit is contained in:
Colin Ian King 2022-03-15 22:19:29 +00:00 committed by Lyude Paul
parent 07739597b4
commit f33b21f139
1 changed files with 1 additions and 1 deletions

View File

@ -2935,7 +2935,7 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
/* switch mmio to cpu's native endianness */
if (!nvkm_device_endianness(device)) {
nvdev_error(device,
"Couldn't switch GPU to CPUs endianess\n");
"Couldn't switch GPU to CPUs endianness\n");
ret = -ENOSYS;
goto done;
}