[PATCH v3 1/8] drm/vma-manager: drm_vma_node_start() constify argument
Noralf Trønnes
noralf at tronnes.org
Thu Oct 26 16:57:24 UTC 2017
Constify argument so functions calling into this take a const argument.
Signed-off-by: Noralf Trønnes <noralf at tronnes.org>
---
include/drm/drm_vma_manager.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/drm/drm_vma_manager.h b/include/drm/drm_vma_manager.h
index d84d52f6d2b1..8758df94e9a0 100644
--- a/include/drm/drm_vma_manager.h
+++ b/include/drm/drm_vma_manager.h
@@ -152,7 +152,7 @@ static inline void drm_vma_node_reset(struct drm_vma_offset_node *node)
* Start address of @node for page-based addressing. 0 if the node does not
* have an offset allocated.
*/
-static inline unsigned long drm_vma_node_start(struct drm_vma_offset_node *node)
+static inline unsigned long drm_vma_node_start(const struct drm_vma_offset_node *node)
{
return node->vm_node.start;
}
--
2.14.2
More information about the dri-devel
mailing list