linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/9] drm: fix trivial typos
@ 2015-10-18 15:29 Geliang Tang
  2015-10-18 15:31 ` [PATCH 2/9] scsi: " Geliang Tang
  2015-10-19 15:45 ` [PATCH 1/9] drm: fix trivial typos Alex Deucher
  0 siblings, 2 replies; 15+ messages in thread
From: Geliang Tang @ 2015-10-18 15:29 UTC (permalink / raw)
  To: David Airlie, Alex Deucher, Christian König, Jiri Kosina
  Cc: Geliang Tang, dri-devel, linux-kernel

s/regsiter/register/

Signed-off-by: Geliang Tang <geliangtang@163.com>
---
 drivers/gpu/drm/amd/include/atombios.h          | 2 +-
 drivers/gpu/drm/radeon/cayman_blit_shaders.c    | 2 +-
 drivers/gpu/drm/radeon/evergreen_blit_shaders.c | 2 +-
 drivers/gpu/drm/radeon/r600_blit_shaders.c      | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/amd/include/atombios.h b/drivers/gpu/drm/amd/include/atombios.h
index 44c5d4a..5526226 100644
--- a/drivers/gpu/drm/amd/include/atombios.h
+++ b/drivers/gpu/drm/amd/include/atombios.h
@@ -6784,7 +6784,7 @@ typedef struct _ATOM_MC_INIT_PARAM_TABLE_V2_1
   ULONG                         ulMCUcodeRomStartAddr;
   ULONG                         ulMCUcodeLength;
   USHORT                        usMcRegInitTableOffset;     // offset of ATOM_REG_INIT_SETTING array for MC core register settings.
-  USHORT                        usReserved;                 // offset of ATOM_INIT_REG_BLOCK for MC SEQ/PHY regsiter setting
+  USHORT                        usReserved;                 // offset of ATOM_INIT_REG_BLOCK for MC SEQ/PHY register setting
 }ATOM_MC_INIT_PARAM_TABLE_V2_1;
 
 
diff --git a/drivers/gpu/drm/radeon/cayman_blit_shaders.c b/drivers/gpu/drm/radeon/cayman_blit_shaders.c
index 98d009e..9fec4d0 100644
--- a/drivers/gpu/drm/radeon/cayman_blit_shaders.c
+++ b/drivers/gpu/drm/radeon/cayman_blit_shaders.c
@@ -32,7 +32,7 @@
  * evergreen cards need to use the 3D engine to blit data which requires
  * quite a bit of hw state setup.  Rather than pull the whole 3D driver
  * (which normally generates the 3D state) into the DRM, we opt to use
- * statically generated state tables.  The regsiter state and shaders
+ * statically generated state tables.  The register state and shaders
  * were hand generated to support blitting functionality.  See the 3D
  * driver or documentation for descriptions of the registers and
  * shader instructions.
diff --git a/drivers/gpu/drm/radeon/evergreen_blit_shaders.c b/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
index d433834..1a96ddb 100644
--- a/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
+++ b/drivers/gpu/drm/radeon/evergreen_blit_shaders.c
@@ -32,7 +32,7 @@
  * evergreen cards need to use the 3D engine to blit data which requires
  * quite a bit of hw state setup.  Rather than pull the whole 3D driver
  * (which normally generates the 3D state) into the DRM, we opt to use
- * statically generated state tables.  The regsiter state and shaders
+ * statically generated state tables.  The register state and shaders
  * were hand generated to support blitting functionality.  See the 3D
  * driver or documentation for descriptions of the registers and
  * shader instructions.
diff --git a/drivers/gpu/drm/radeon/r600_blit_shaders.c b/drivers/gpu/drm/radeon/r600_blit_shaders.c
index 34c8b23..443cbe5 100644
--- a/drivers/gpu/drm/radeon/r600_blit_shaders.c
+++ b/drivers/gpu/drm/radeon/r600_blit_shaders.c
@@ -32,7 +32,7 @@
  * R6xx+ cards need to use the 3D engine to blit data which requires
  * quite a bit of hw state setup.  Rather than pull the whole 3D driver
  * (which normally generates the 3D state) into the DRM, we opt to use
- * statically generated state tables.  The regsiter state and shaders
+ * statically generated state tables.  The register state and shaders
  * were hand generated to support blitting functionality.  See the 3D
  * driver or documentation for descriptions of the registers and
  * shader instructions.
-- 
2.5.0



^ permalink raw reply related	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2015-10-27 10:47 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-18 15:29 [PATCH 1/9] drm: fix trivial typos Geliang Tang
2015-10-18 15:31 ` [PATCH 2/9] scsi: " Geliang Tang
2015-10-18 15:31   ` [PATCH 3/9] net: " Geliang Tang
2015-10-18 15:31     ` [PATCH 4/9] dma: fix a trivial typo Geliang Tang
2015-10-18 15:31       ` [PATCH 5/9] staging: wilc1000: fix trivial typos Geliang Tang
2015-10-18 15:31         ` [PATCH 6/9] clk: keystone: fix a trivial typo Geliang Tang
2015-10-18 15:31           ` [PATCH 7/9] input: keyboard: " Geliang Tang
2015-10-18 15:31             ` [PATCH 8/9] parport: " Geliang Tang
2015-10-18 15:31               ` [PATCH 9/9] usb: gadget: " Geliang Tang
2015-10-27 10:46               ` [PATCH 8/9] parport: " Sudip Mukherjee
2015-10-20 16:41             ` [PATCH 7/9] input: keyboard: " Dmitry Torokhov
2015-10-19 21:48           ` [PATCH 6/9] clk: keystone: " Stephen Boyd
2015-10-23 23:27       ` [PATCH 4/9] dma: " Linus Walleij
2015-10-24 22:47       ` Vinod Koul
2015-10-19 15:45 ` [PATCH 1/9] drm: fix trivial typos Alex Deucher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).