Keep checkpatch happy by addressing the following:
CHECK: Alignment should match open parenthesis
CHECK: Blank lines aren't necessary after an open brace '{'
CHECK: No space is necessary after a cast

Signed-off-by: Zi Shen Lim <zlim....@gmail.com>
---
 drivers/staging/android/ashmem.c | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

diff --git a/drivers/staging/android/ashmem.c b/drivers/staging/android/ashmem.c
index 713a972..d441b65 100644
--- a/drivers/staging/android/ashmem.c
+++ b/drivers/staging/android/ashmem.c
@@ -447,8 +447,8 @@ ashmem_shrink_scan(struct shrinker *shrink, struct 
shrink_control *sc)
                loff_t end = (range->pgend + 1) * PAGE_SIZE;
 
                do_fallocate(range->asma->file,
-                               FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
-                               start, end - start);
+                            FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE,
+                            start, end - start);
                range->purged = ASHMEM_WAS_PURGED;
                lru_del(range);
 
@@ -549,7 +549,6 @@ static int get_name(struct ashmem_area *asma, void __user 
*name)
 
        mutex_lock(&ashmem_mutex);
        if (asma->name[ASHMEM_NAME_PREFIX_LEN] != '\0') {
-
                /*
                 * Copying only `len', instead of ASHMEM_NAME_LEN, bytes
                 * prevents us from revealing one user's stack to another.
@@ -751,10 +750,10 @@ static long ashmem_ioctl(struct file *file, unsigned int 
cmd, unsigned long arg)
 
        switch (cmd) {
        case ASHMEM_SET_NAME:
-               ret = set_name(asma, (void __user *) arg);
+               ret = set_name(asma, (void __user *)arg);
                break;
        case ASHMEM_GET_NAME:
-               ret = get_name(asma, (void __user *) arg);
+               ret = get_name(asma, (void __user *)arg);
                break;
        case ASHMEM_SET_SIZE:
                ret = -EINVAL;
@@ -775,7 +774,7 @@ static long ashmem_ioctl(struct file *file, unsigned int 
cmd, unsigned long arg)
        case ASHMEM_PIN:
        case ASHMEM_UNPIN:
        case ASHMEM_GET_PIN_STATUS:
-               ret = ashmem_pin_unpin(asma, cmd, (void __user *) arg);
+               ret = ashmem_pin_unpin(asma, cmd, (void __user *)arg);
                break;
        case ASHMEM_PURGE_ALL_CACHES:
                ret = -EPERM;
@@ -799,7 +798,6 @@ static long ashmem_ioctl(struct file *file, unsigned int 
cmd, unsigned long arg)
 static long compat_ashmem_ioctl(struct file *file, unsigned int cmd,
                                unsigned long arg)
 {
-
        switch (cmd) {
        case COMPAT_ASHMEM_SET_SIZE:
                cmd = ASHMEM_SET_SIZE;
-- 
1.8.3.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to