diff options
author | Sara Bird <sara.bird.iar@gmail.com> | 2013-05-20 15:18:14 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-05-21 10:30:10 -0700 |
commit | 396b7fd6f9668c04f20ee6daca3054f5c5ec1056 (patch) | |
tree | ddb98d3aeb9980c2bc8ce271bf03fcf25a26bd5d /drivers/staging/zsmalloc | |
parent | 0e1e9b44ab7a9f8f8b47f8665a8154362e80faa0 (diff) | |
download | talos-obmc-linux-396b7fd6f9668c04f20ee6daca3054f5c5ec1056.tar.gz talos-obmc-linux-396b7fd6f9668c04f20ee6daca3054f5c5ec1056.zip |
staging/zsmalloc: Fixed up incorrect formatted comments
The existing comments are using an odd style. Fixed them up to adhere
to the StyleGuide. No code changes.
Signed-off-by: Sara Bird <sara.bird.iar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/zsmalloc')
-rw-r--r-- | drivers/staging/zsmalloc/zsmalloc-main.c | 4 | ||||
-rw-r--r-- | drivers/staging/zsmalloc/zsmalloc.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/zsmalloc/zsmalloc-main.c b/drivers/staging/zsmalloc/zsmalloc-main.c index 96467eabcc21..4bb275b2d98f 100644 --- a/drivers/staging/zsmalloc/zsmalloc-main.c +++ b/drivers/staging/zsmalloc/zsmalloc-main.c @@ -224,7 +224,7 @@ struct zs_pool { * performs VM mapping faster than copying, then it should be added here * so that USE_PGTABLE_MAPPING is defined. This causes zsmalloc to use * page table mapping rather than copying for object mapping. -*/ + */ #if defined(CONFIG_ARM) && !defined(MODULE) #define USE_PGTABLE_MAPPING #endif @@ -967,7 +967,7 @@ EXPORT_SYMBOL_GPL(zs_free); * against nested mappings. * * This function returns with preemption and page faults disabled. -*/ + */ void *zs_map_object(struct zs_pool *pool, unsigned long handle, enum zs_mapmode mm) { diff --git a/drivers/staging/zsmalloc/zsmalloc.h b/drivers/staging/zsmalloc/zsmalloc.h index 46dbd0558d86..fbe6bec421aa 100644 --- a/drivers/staging/zsmalloc/zsmalloc.h +++ b/drivers/staging/zsmalloc/zsmalloc.h @@ -19,7 +19,7 @@ * zsmalloc mapping modes * * NOTE: These only make a difference when a mapped object spans pages -*/ + */ enum zs_mapmode { ZS_MM_RW, /* normal read-write mapping */ ZS_MM_RO, /* read-only (no copy-out at unmap time) */ |