[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20260108102940.232911-1-ben.dooks@codethink.co.uk>
Date: Thu, 8 Jan 2026 10:29:40 +0000
From: Ben Dooks <ben.dooks@...ethink.co.uk>
To: dri-devel@...ts.freedesktop.org
Cc: linux-kernel@...r.kernel.org,
simona@...ll.ch,
airlied@...il.com,
tzimmermann@...e.de,
mripard@...nel.org,
maarten.lankhorst@...ux.intel.com,
Ben Dooks <ben.dooks@...ethink.co.uk>
Subject: [PATCH] ttm/bo: make ttm_swap_ops static
The ttm_swap_ops is not exported from this file, so make it static
to avoid the following sparse warning:
drivers/gpu/drm/ttm/ttm_bo.c:1202:31: warning: symbol 'ttm_swap_ops' was not declared. Should it be static?
Fixes: 10efe34dae798c652053d43 ("drm/ttm: Use the LRU walker helper for swapping")
Signed-off-by: Ben Dooks <ben.dooks@...ethink.co.uk>
---
drivers/gpu/drm/ttm/ttm_bo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/ttm/ttm_bo.c b/drivers/gpu/drm/ttm/ttm_bo.c
index bd27607f8076..6b1c80be1beb 100644
--- a/drivers/gpu/drm/ttm/ttm_bo.c
+++ b/drivers/gpu/drm/ttm/ttm_bo.c
@@ -1199,7 +1199,7 @@ ttm_bo_swapout_cb(struct ttm_lru_walk *walk, struct ttm_buffer_object *bo)
return ret;
}
-const struct ttm_lru_walk_ops ttm_swap_ops = {
+static const struct ttm_lru_walk_ops ttm_swap_ops = {
.process_bo = ttm_bo_swapout_cb,
};
--
2.37.2.352.g3c44437643
Powered by blists - more mailing lists