File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
drivers/staging/media/atomisp/pci/hmm Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -288,15 +288,15 @@ static void __bo_take_off_handling(struct hmm_buffer_object *bo)
288
288
/* 3. when bo->prev != NULL && bo->next == NULL, bo is not a rbtree
289
289
* node, bo is the last element of the linked list after rbtree
290
290
* node, to take off this bo, we just need set the "prev/next"
291
- * pointers to NULL, the free rbtree stays unchaged
291
+ * pointers to NULL, the free rbtree stays unchanged
292
292
*/
293
293
} else if (bo -> prev && !bo -> next ) {
294
294
bo -> prev -> next = NULL ;
295
295
bo -> prev = NULL ;
296
296
/* 4. when bo->prev != NULL && bo->next != NULL ,bo is not a rbtree
297
297
* node, bo is in the middle of the linked list after rbtree node,
298
298
* to take off this bo, we just set take the "prev/next" pointers
299
- * to NULL, the free rbtree stays unchaged
299
+ * to NULL, the free rbtree stays unchanged
300
300
*/
301
301
} else if (bo -> prev && bo -> next ) {
302
302
bo -> next -> prev = bo -> prev ;
You can’t perform that action at this time.
0 commit comments