summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorSara Bird <sara.bird.iar@gmail.com>2013-05-20 15:18:14 -0400
committerChanho Park <chanho61.park@samsung.com>2014-03-20 17:44:23 +0900
commitab6d52c5784ca1e2fc42a61f5d452ec8533077ef (patch)
tree77e2713b3a1634d993f2662f9fb99266e1832508 /drivers
parent8dc5a0ec49ab1bb3b15dcb8589c4fc7625f37acf (diff)
downloadlinux-3.10-ab6d52c5784ca1e2fc42a61f5d452ec8533077ef.tar.gz
linux-3.10-ab6d52c5784ca1e2fc42a61f5d452ec8533077ef.tar.bz2
linux-3.10-ab6d52c5784ca1e2fc42a61f5d452ec8533077ef.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. Change-Id: I8e6d8cfa84fa87fb79f5ffc6973d7ab12287ba67 Signed-off-by: Sara Bird <sara.bird.iar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/staging/zsmalloc/zsmalloc-main.c4
-rw-r--r--drivers/staging/zsmalloc/zsmalloc.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/staging/zsmalloc/zsmalloc-main.c b/drivers/staging/zsmalloc/zsmalloc-main.c
index e2511734058..cdc118f52a1 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
@@ -976,7 +976,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 46dbd0558d8..fbe6bec421a 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) */