Commit c68edaa0 authored by Tom St Denis's avatar Tom St Denis Committed by Alex Deucher

drm/ttm: Fix coding style in ttm_pool_store()

Correct missing {} style.
Signed-off-by: default avatarTom St Denis <tom.stdenis@amd.com>
Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 5b4262d7
...@@ -210,6 +210,7 @@ static ssize_t ttm_pool_store(struct kobject *kobj, struct attribute *attr, ...@@ -210,6 +210,7 @@ static ssize_t ttm_pool_store(struct kobject *kobj, struct attribute *attr,
container_of(kobj, struct ttm_pool_manager, kobj); container_of(kobj, struct ttm_pool_manager, kobj);
int chars; int chars;
unsigned val; unsigned val;
chars = sscanf(buffer, "%u", &val); chars = sscanf(buffer, "%u", &val);
if (chars == 0) if (chars == 0)
return size; return size;
...@@ -217,11 +218,11 @@ static ssize_t ttm_pool_store(struct kobject *kobj, struct attribute *attr, ...@@ -217,11 +218,11 @@ static ssize_t ttm_pool_store(struct kobject *kobj, struct attribute *attr,
/* Convert kb to number of pages */ /* Convert kb to number of pages */
val = val / (PAGE_SIZE >> 10); val = val / (PAGE_SIZE >> 10);
if (attr == &ttm_page_pool_max) if (attr == &ttm_page_pool_max) {
m->options.max_size = val; m->options.max_size = val;
else if (attr == &ttm_page_pool_small) } else if (attr == &ttm_page_pool_small) {
m->options.small = val; m->options.small = val;
else if (attr == &ttm_page_pool_alloc_size) { } else if (attr == &ttm_page_pool_alloc_size) {
if (val > NUM_PAGES_TO_ALLOC*8) { if (val > NUM_PAGES_TO_ALLOC*8) {
pr_err("Setting allocation size to %lu is not allowed. Recommended size is %lu\n", pr_err("Setting allocation size to %lu is not allowed. Recommended size is %lu\n",
NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 7), NUM_PAGES_TO_ALLOC*(PAGE_SIZE >> 7),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment