diff --git a/src/nouveau/vulkan/nvk_cmd_copy.c b/src/nouveau/vulkan/nvk_cmd_copy.c index 37c092e7add..10fcf8a3463 100644 --- a/src/nouveau/vulkan/nvk_cmd_copy.c +++ b/src/nouveau/vulkan/nvk_cmd_copy.c @@ -197,7 +197,7 @@ nouveau_copy_rect(struct nvk_cmd_buffer *cmd, struct nouveau_copy *copy) }); } else { /* When component remapping is disabled, dimensions are in units of - * bytes (an implicit block widht of 1B). + * bytes (an implicit block width of 1B). */ assert(copy->src.bpp == copy->dst.bpp); src_bw = copy->src.bpp; diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index ca4f2464642..c670d7e08c7 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -1338,7 +1338,7 @@ get_image_format_properties(struct panvk_physical_device *physical_device, /* We need to limit images to 32-bit range, because the maximum * slice-stride is 32-bit wide, meaning that if we allocate an image - * with the maximum widht and height, we end up overflowing it. + * with the maximum width and height, we end up overflowing it. * * We get around this by simply limiting the maximum resource size. */