@@ -693,7 +693,7 @@ typedef struct drm_i915_irq_wait {
693
693
#define I915_PARAM_HAS_EXEC_FENCE 44
694
694
695
695
/* Query whether DRM_I915_GEM_EXECBUFFER2 supports the ability to capture
696
- * user specified bufffers for post-mortem debugging of GPU hangs. See
696
+ * user- specified buffers for post-mortem debugging of GPU hangs. See
697
697
* EXEC_OBJECT_CAPTURE.
698
698
*/
699
699
#define I915_PARAM_HAS_EXEC_CAPTURE 45
@@ -1606,7 +1606,7 @@ struct drm_i915_gem_busy {
1606
1606
* is accurate.
1607
1607
*
1608
1608
* The returned dword is split into two fields to indicate both
1609
- * the engine classess on which the object is being read, and the
1609
+ * the engine classes on which the object is being read, and the
1610
1610
* engine class on which it is currently being written (if any).
1611
1611
*
1612
1612
* The low word (bits 0:15) indicate if the object is being written
@@ -1815,7 +1815,7 @@ struct drm_i915_gem_madvise {
1815
1815
__u32 handle ;
1816
1816
1817
1817
/* Advice: either the buffer will be needed again in the near future,
1818
- * or wont be and could be discarded under memory pressure.
1818
+ * or won't be and could be discarded under memory pressure.
1819
1819
*/
1820
1820
__u32 madv ;
1821
1821
@@ -3246,7 +3246,7 @@ struct drm_i915_query_topology_info {
3246
3246
* // enough to hold our array of engines. The kernel will fill out the
3247
3247
* // item.length for us, which is the number of bytes we need.
3248
3248
* //
3249
- * // Alternatively a large buffer can be allocated straight away enabling
3249
+ * // Alternatively a large buffer can be allocated straightaway enabling
3250
3250
* // querying in one pass, in which case item.length should contain the
3251
3251
* // length of the provided buffer.
3252
3252
* err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
@@ -3256,7 +3256,7 @@ struct drm_i915_query_topology_info {
3256
3256
* // Now that we allocated the required number of bytes, we call the ioctl
3257
3257
* // again, this time with the data_ptr pointing to our newly allocated
3258
3258
* // blob, which the kernel can then populate with info on all engines.
3259
- * item.data_ptr = (uintptr_t)&info,
3259
+ * item.data_ptr = (uintptr_t)&info;
3260
3260
*
3261
3261
* err = ioctl(fd, DRM_IOCTL_I915_QUERY, &query);
3262
3262
* if (err) ...
@@ -3286,7 +3286,7 @@ struct drm_i915_query_topology_info {
3286
3286
/**
3287
3287
* struct drm_i915_engine_info
3288
3288
*
3289
- * Describes one engine and it's capabilities as known to the driver.
3289
+ * Describes one engine and its capabilities as known to the driver.
3290
3290
*/
3291
3291
struct drm_i915_engine_info {
3292
3292
/** @engine: Engine class and instance. */
0 commit comments