Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32197aab authored by Masanari Iida's avatar Masanari Iida Committed by Daniel Vetter
Browse files

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: default avatarMasanari Iida <standby24x7@gmail.com>
Acked-by: default avatarRandy Dunlap <rdunlap@infradead.org>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent d87af4d1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3611,7 +3611,7 @@ static struct drm_property *property_create_range(struct drm_device *dev,
 * object with drm_object_attach_property. The returned property object must be
 * freed with drm_property_destroy.
 *
 * Userspace is allowed to set any interger value in the (min, max) range
 * Userspace is allowed to set any integer value in the (min, max) range
 * inclusive.
 *
 * Returns:
+2 −2
Original line number Diff line number Diff line
@@ -1190,7 +1190,7 @@ EXPORT_SYMBOL(drm_crtc_vblank_off);
 *
 * This functions restores the vblank interrupt state captured with
 * drm_vblank_off() again. Note that calls to drm_vblank_on() and
 * drm_vblank_off() can be unbalanced and so can also be unconditionaly called
 * drm_vblank_off() can be unbalanced and so can also be unconditionally called
 * in driver load code to reflect the current hardware state of the crtc.
 *
 * This is the legacy version of drm_crtc_vblank_on().
@@ -1237,7 +1237,7 @@ EXPORT_SYMBOL(drm_vblank_on);
 *
 * This functions restores the vblank interrupt state captured with
 * drm_vblank_off() again. Note that calls to drm_vblank_on() and
 * drm_vblank_off() can be unbalanced and so can also be unconditionaly called
 * drm_vblank_off() can be unbalanced and so can also be unconditionally called
 * in driver load code to reflect the current hardware state of the crtc.
 *
 * This is the native kms version of drm_vblank_on().
+1 −1
Original line number Diff line number Diff line
@@ -914,7 +914,7 @@ EXPORT_SYMBOL(drm_mode_equal_no_clocks_no_stereo);
 *
 * This function is a helper which can be used to validate modes against size
 * limitations of the DRM device/connector. If a mode is too big its status
 * memeber is updated with the appropriate validation failure code. The list
 * member is updated with the appropriate validation failure code. The list
 * itself is not changed.
 */
void drm_mode_validate_size(struct drm_device *dev,
+2 −2
Original line number Diff line number Diff line
@@ -328,7 +328,7 @@ static const struct dma_buf_ops drm_gem_prime_dmabuf_ops = {
 */

/**
 * drm_gem_prime_export - helper library implemention of the export callback
 * drm_gem_prime_export - helper library implementation of the export callback
 * @dev: drm_device to export from
 * @obj: GEM object to export
 * @flags: flags like DRM_CLOEXEC
@@ -483,7 +483,7 @@ int drm_gem_prime_handle_to_fd(struct drm_device *dev,
EXPORT_SYMBOL(drm_gem_prime_handle_to_fd);

/**
 * drm_gem_prime_import - helper library implemention of the import callback
 * drm_gem_prime_import - helper library implementation of the import callback
 * @dev: drm_device to import into
 * @dma_buf: dma-buf object to import
 *
+2 −2
Original line number Diff line number Diff line
@@ -73,7 +73,7 @@
 * those commands required by the parser. This generally works because command
 * opcode ranges have standard command length encodings. So for commands that
 * the parser does not need to check, it can easily skip them. This is
 * implementated via a per-ring length decoding vfunc.
 * implemented via a per-ring length decoding vfunc.
 *
 * Unfortunately, there are a number of commands that do not follow the standard
 * length encoding for their opcode range, primarily amongst the MI_* commands.
@@ -836,7 +836,7 @@ static u32 *vmap_batch(struct drm_i915_gem_object *obj)
 * @ring: the ring in question
 *
 * Only certain platforms require software batch buffer command parsing, and
 * only when enabled via module paramter.
 * only when enabled via module parameter.
 *
 * Return: true if the ring requires software command parsing
 */
Loading