summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-01-29 11:55:05 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2022-01-29 11:55:05 -0800
commit33dc6d773f43b733440f10a3049eaecfbfdfc896 (patch)
tree7994b4a8d823e4e586e4c9c0e557fa1ecdc3ceed
parent0fbbe921deee4c24fbabfb3ef6de76b48a973614 (diff)
Fix spelling/wording issues
Found by using: codespell --builtin clear,rare,usage,informal,code,names Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--README.md2
-rw-r--r--src/tdfx.h2
-rw-r--r--src/tdfx_driver.c2
-rw-r--r--src/tdfx_sli.c2
-rw-r--r--src/tdfx_video.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/README.md b/README.md
index 8612e7d..a7296c0 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@ Xorg mailing list:
https://lists.x.org/mailman/listinfo/xorg
-The master development code repository can be found at:
+The primary development code repository can be found at:
https://gitlab.freedesktop.org/xorg/driver/xf86-video-tdfx
diff --git a/src/tdfx.h b/src/tdfx.h
index 7411208..ed9e546 100644
--- a/src/tdfx.h
+++ b/src/tdfx.h
@@ -37,7 +37,7 @@
#define TDFX_MINOR_VERSION PACKAGE_VERSION_MINOR
#define TDFX_PATCHLEVEL PACKAGE_VERSION_PATCHLEVEL
-/* Macros to aid source compatibilty between pci-rework and "classic" builds.
+/* Macros to aid source compatibility between pci-rework and "classic" builds.
*/
#ifdef XSERVER_LIBPCIACCESS
#include <pciaccess.h>
diff --git a/src/tdfx_driver.c b/src/tdfx_driver.c
index 90bc56a..9a58cba 100644
--- a/src/tdfx_driver.c
+++ b/src/tdfx_driver.c
@@ -2419,7 +2419,7 @@ TDFXScreenInit(SCREEN_INIT_ARGS_DECL) {
pScreen->BlockHandler = TDFXBlockHandler;
/*
- * DRICloseScreen isn't called thru a wrapper but explicitely
+ * DRICloseScreen isn't called thru a wrapper but explicitly
* in of TDFXCloseScreen() before the rest is unwrapped
*/
diff --git a/src/tdfx_sli.c b/src/tdfx_sli.c
index 1507515..88fc053 100644
--- a/src/tdfx_sli.c
+++ b/src/tdfx_sli.c
@@ -249,7 +249,7 @@ Bool TDFXSetupSLI(ScrnInfoPtr pScrn, Bool sliEnable, int aaSamples)
else dwFormat = CFG_AA_LFB_RD_FORMAT_32BPP;
if (pTDFX->numChips==2 && !sliEnable && aaSamples==2)
dwFormat|=CFG_AA_LFB_RD_DIVIDE_BY_4;
- /* Thess are wrong, because we don't know where the secondary buffers
+ /* These are wrong, because we don't know where the secondary buffers
are located */
pTDFX->writeChipLong(pTDFX, i, CFG_AA_LFB_CTRL,
(pScrn->videoRam<<10 /* 2nd buf */ << CFG_AA_BASEADDR_SHIFT) |
diff --git a/src/tdfx_video.c b/src/tdfx_video.c
index 46218c1..bcdd3a4 100644
--- a/src/tdfx_video.c
+++ b/src/tdfx_video.c
@@ -528,7 +528,7 @@ TDFXScreenToScreenYUVStretchBlit (ScrnInfoPtr pScrn,
short dst_x2, short dst_y2)
{
TDFXPtr pTDFX = TDFXPTR(pScrn);
- /* reformulate the paramaters the way the hardware wants them */
+ /* reformulate the parameters the way the hardware wants them */
INT32 src_x = src_x1 & 0x1FFF;
INT32 src_y = src_y1 & 0x1FFF;
INT32 dst_x = dst_x1 & 0x1FFF;