diff options
-rw-r--r-- | drivers/gpu/drm/ttm/ttm_memory.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ttm/ttm_memory.c b/drivers/gpu/drm/ttm/ttm_memory.c index dbc2def887cd..a1803fbcc898 100644 --- a/drivers/gpu/drm/ttm/ttm_memory.c +++ b/drivers/gpu/drm/ttm/ttm_memory.c | |||
@@ -300,7 +300,8 @@ static int ttm_mem_init_highmem_zone(struct ttm_mem_global *glob, | |||
300 | zone->glob = glob; | 300 | zone->glob = glob; |
301 | glob->zone_highmem = zone; | 301 | glob->zone_highmem = zone; |
302 | ret = kobject_init_and_add( | 302 | ret = kobject_init_and_add( |
303 | &zone->kobj, &ttm_mem_zone_kobj_type, &glob->kobj, zone->name); | 303 | &zone->kobj, &ttm_mem_zone_kobj_type, &glob->kobj, "%s", |
304 | zone->name); | ||
304 | if (unlikely(ret != 0)) { | 305 | if (unlikely(ret != 0)) { |
305 | kobject_put(&zone->kobj); | 306 | kobject_put(&zone->kobj); |
306 | return ret; | 307 | return ret; |