diff options
author | Masanari Iida <standby24x7@gmail.com> | 2014-10-20 10:53:13 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2014-10-21 04:55:33 -0400 |
commit | 32197aab0425dbecc38462a91bc5c8acf70b2036 (patch) | |
tree | 87eed77b768688022f358c34d9aba8870bbb0d77 /drivers | |
parent | d87af4d10558fedf636e3df1b10dd2954f9e2a78 (diff) |
gpu:drm: Fix typo in Documentation/DocBook/drm.xml
This patch fix spelling typos found in drm.xml.
It is because the file is generated from comments in
source codes, I have to fix the typos within source files.
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/drm_crtc.c | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/drm_irq.c | 4 | ||||
-rw-r--r-- | drivers/gpu/drm/drm_modes.c | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/drm_prime.c | 4 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/i915_cmd_parser.c | 4 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/i915_reg.h | 2 | ||||
-rw-r--r-- | drivers/gpu/drm/i915/intel_lrc.c | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/drivers/gpu/drm/drm_crtc.c b/drivers/gpu/drm/drm_crtc.c index e79c8d3700d8..7f94989e6fc9 100644 --- a/drivers/gpu/drm/drm_crtc.c +++ b/drivers/gpu/drm/drm_crtc.c | |||
@@ -3611,7 +3611,7 @@ static struct drm_property *property_create_range(struct drm_device *dev, | |||
3611 | * object with drm_object_attach_property. The returned property object must be | 3611 | * object with drm_object_attach_property. The returned property object must be |
3612 | * freed with drm_property_destroy. | 3612 | * freed with drm_property_destroy. |
3613 | * | 3613 | * |
3614 | * Userspace is allowed to set any interger value in the (min, max) range | 3614 | * Userspace is allowed to set any integer value in the (min, max) range |
3615 | * inclusive. | 3615 | * inclusive. |
3616 | * | 3616 | * |
3617 | * Returns: | 3617 | * Returns: |
diff --git a/drivers/gpu/drm/drm_irq.c b/drivers/gpu/drm/drm_irq.c index 5ef03c216a27..3e6b582f60dd 100644 --- a/drivers/gpu/drm/drm_irq.c +++ b/drivers/gpu/drm/drm_irq.c | |||
@@ -1190,7 +1190,7 @@ EXPORT_SYMBOL(drm_crtc_vblank_off); | |||
1190 | * | 1190 | * |
1191 | * This functions restores the vblank interrupt state captured with | 1191 | * This functions restores the vblank interrupt state captured with |
1192 | * drm_vblank_off() again. Note that calls to drm_vblank_on() and | 1192 | * drm_vblank_off() again. Note that calls to drm_vblank_on() and |
1193 | * drm_vblank_off() can be unbalanced and so can also be unconditionaly called | 1193 | * drm_vblank_off() can be unbalanced and so can also be unconditionally called |
1194 | * in driver load code to reflect the current hardware state of the crtc. | 1194 | * in driver load code to reflect the current hardware state of the crtc. |
1195 | * | 1195 | * |
1196 | * This is the legacy version of drm_crtc_vblank_on(). | 1196 | * This is the legacy version of drm_crtc_vblank_on(). |
@@ -1237,7 +1237,7 @@ EXPORT_SYMBOL(drm_vblank_on); | |||
1237 | * | 1237 | * |
1238 | * This functions restores the vblank interrupt state captured with | 1238 | * This functions restores the vblank interrupt state captured with |
1239 | * drm_vblank_off() again. Note that calls to drm_vblank_on() and | 1239 | * drm_vblank_off() again. Note that calls to drm_vblank_on() and |
1240 | * drm_vblank_off() can be unbalanced and so can also be unconditionaly called | 1240 | * drm_vblank_off() can be unbalanced and so can also be unconditionally called |
1241 | * in driver load code to reflect the current hardware state of the crtc. | 1241 | * in driver load code to reflect the current hardware state of the crtc. |
1242 | * | 1242 | * |
1243 | * This is the native kms version of drm_vblank_on(). | 1243 | * This is the native kms version of drm_vblank_on(). |
diff --git a/drivers/gpu/drm/drm_modes.c b/drivers/gpu/drm/drm_modes.c index d1b7d2006529..6d8b941c8200 100644 --- a/drivers/gpu/drm/drm_modes.c +++ b/drivers/gpu/drm/drm_modes.c | |||
@@ -914,7 +914,7 @@ EXPORT_SYMBOL(drm_mode_equal_no_clocks_no_stereo); | |||
914 | * | 914 | * |
915 | * This function is a helper which can be used to validate modes against size | 915 | * This function is a helper which can be used to validate modes against size |
916 | * limitations of the DRM device/connector. If a mode is too big its status | 916 | * limitations of the DRM device/connector. If a mode is too big its status |
917 | * memeber is updated with the appropriate validation failure code. The list | 917 | * member is updated with the appropriate validation failure code. The list |
918 | * itself is not changed. | 918 | * itself is not changed. |
919 | */ | 919 | */ |
920 | void drm_mode_validate_size(struct drm_device *dev, | 920 | void drm_mode_validate_size(struct drm_device *dev, |
diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c index 78ca30808422..6872eca6555e 100644 --- a/drivers/gpu/drm/drm_prime.c +++ b/drivers/gpu/drm/drm_prime.c | |||
@@ -328,7 +328,7 @@ static const struct dma_buf_ops drm_gem_prime_dmabuf_ops = { | |||
328 | */ | 328 | */ |
329 | 329 | ||
330 | /** | 330 | /** |
331 | * drm_gem_prime_export - helper library implemention of the export callback | 331 | * drm_gem_prime_export - helper library implementation of the export callback |
332 | * @dev: drm_device to export from | 332 | * @dev: drm_device to export from |
333 | * @obj: GEM object to export | 333 | * @obj: GEM object to export |
334 | * @flags: flags like DRM_CLOEXEC | 334 | * @flags: flags like DRM_CLOEXEC |
@@ -483,7 +483,7 @@ out_unlock: | |||
483 | EXPORT_SYMBOL(drm_gem_prime_handle_to_fd); | 483 | EXPORT_SYMBOL(drm_gem_prime_handle_to_fd); |
484 | 484 | ||
485 | /** | 485 | /** |
486 | * drm_gem_prime_import - helper library implemention of the import callback | 486 | * drm_gem_prime_import - helper library implementation of the import callback |
487 | * @dev: drm_device to import into | 487 | * @dev: drm_device to import into |
488 | * @dma_buf: dma-buf object to import | 488 | * @dma_buf: dma-buf object to import |
489 | * | 489 | * |
diff --git a/drivers/gpu/drm/i915/i915_cmd_parser.c b/drivers/gpu/drm/i915/i915_cmd_parser.c index c45856bcc8b9..5506242ee766 100644 --- a/drivers/gpu/drm/i915/i915_cmd_parser.c +++ b/drivers/gpu/drm/i915/i915_cmd_parser.c | |||
@@ -73,7 +73,7 @@ | |||
73 | * those commands required by the parser. This generally works because command | 73 | * those commands required by the parser. This generally works because command |
74 | * opcode ranges have standard command length encodings. So for commands that | 74 | * opcode ranges have standard command length encodings. So for commands that |
75 | * the parser does not need to check, it can easily skip them. This is | 75 | * the parser does not need to check, it can easily skip them. This is |
76 | * implementated via a per-ring length decoding vfunc. | 76 | * implemented via a per-ring length decoding vfunc. |
77 | * | 77 | * |
78 | * Unfortunately, there are a number of commands that do not follow the standard | 78 | * Unfortunately, there are a number of commands that do not follow the standard |
79 | * length encoding for their opcode range, primarily amongst the MI_* commands. | 79 | * length encoding for their opcode range, primarily amongst the MI_* commands. |
@@ -836,7 +836,7 @@ finish: | |||
836 | * @ring: the ring in question | 836 | * @ring: the ring in question |
837 | * | 837 | * |
838 | * Only certain platforms require software batch buffer command parsing, and | 838 | * Only certain platforms require software batch buffer command parsing, and |
839 | * only when enabled via module paramter. | 839 | * only when enabled via module parameter. |
840 | * | 840 | * |
841 | * Return: true if the ring requires software command parsing | 841 | * Return: true if the ring requires software command parsing |
842 | */ | 842 | */ |
diff --git a/drivers/gpu/drm/i915/i915_reg.h b/drivers/gpu/drm/i915/i915_reg.h index b65bdfc23ccb..65821bad3f6a 100644 --- a/drivers/gpu/drm/i915/i915_reg.h +++ b/drivers/gpu/drm/i915/i915_reg.h | |||
@@ -664,7 +664,7 @@ enum punit_power_well { | |||
664 | * need to be accessed during AUX communication, | 664 | * need to be accessed during AUX communication, |
665 | * | 665 | * |
666 | * Generally the common lane corresponds to the pipe and | 666 | * Generally the common lane corresponds to the pipe and |
667 | * the spline (PCS/TX) correponds to the port. | 667 | * the spline (PCS/TX) corresponds to the port. |
668 | * | 668 | * |
669 | * For dual channel PHY (VLV/CHV): | 669 | * For dual channel PHY (VLV/CHV): |
670 | * | 670 | * |
diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers/gpu/drm/i915/intel_lrc.c index bd1b28d99920..b7b9a097c213 100644 --- a/drivers/gpu/drm/i915/intel_lrc.c +++ b/drivers/gpu/drm/i915/intel_lrc.c | |||
@@ -1639,7 +1639,7 @@ static uint32_t get_lr_context_size(struct intel_engine_cs *ring) | |||
1639 | * the creation is a deferred call: it's better to make sure first that we need to use | 1639 | * the creation is a deferred call: it's better to make sure first that we need to use |
1640 | * a given ring with the context. | 1640 | * a given ring with the context. |
1641 | * | 1641 | * |
1642 | * Return: non-zero on eror. | 1642 | * Return: non-zero on error. |
1643 | */ | 1643 | */ |
1644 | int intel_lr_context_deferred_create(struct intel_context *ctx, | 1644 | int intel_lr_context_deferred_create(struct intel_context *ctx, |
1645 | struct intel_engine_cs *ring) | 1645 | struct intel_engine_cs *ring) |