staging: android: fix indentation to match open parenthesis
authorFabian Holler <fabian.holler@profitbricks.com>
Wed, 7 Jan 2015 09:39:52 +0000 (10:39 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 18 Jan 2015 00:19:21 +0000 (16:19 -0800)
This patches fixes the following checkpatch.pl warning:
ashmem.c:450: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis

Signed-off-by: Fabian Holler <fabian.holler@profitbricks.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/android/ashmem.c

index 8c7852742f4bc52fe52381043808268a63e3180f..181a71ed46329a2878f335d80caf24852386d695 100644 (file)
@@ -447,8 +447,8 @@ ashmem_shrink_scan(struct shrinker *shrink, struct shrink_control *sc)
                loff_t end = (range->pgend + 1) * PAGE_SIZE;
 
                vfs_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);
 
This page took 0.02789 seconds and 5 git commands to generate.