From: Sara Bird Date: Mon, 20 May 2013 19:18:14 +0000 (-0400) Subject: staging/zsmalloc: Fixed up incorrect formatted comments X-Git-Tag: submit/tizen_common/20140630.083047~291 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e1c70a90aee2056923c16fc41b5b31c9e6ab1a7;p=platform%2Fkernel%2Flinux-3.10.git 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 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/zsmalloc/zsmalloc-main.c b/drivers/staging/zsmalloc/zsmalloc-main.c index e251173..cdc118f 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 46dbd05..fbe6bec 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) */