Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: android: ion: ion.c fix parenthesis alignment

Fix checkpatch.pl warning about "Alignment should match open parenthesis".

Signed-off-by: Didik Setiawan <ds@didiksetiawan.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Didik Setiawan and committed by
Greg Kroah-Hartman
b2bcdadc 9924e5de

+3 -4
+3 -4
drivers/staging/android/ion/ion.c
··· 742 742 743 743 for (node = rb_first(root); node; node = rb_next(node)) { 744 744 struct ion_client *client = rb_entry(node, struct ion_client, 745 - node); 745 + node); 746 746 747 747 if (strcmp(client->name, name)) 748 748 continue; ··· 817 817 rb_insert_color(&client->node, &dev->clients); 818 818 819 819 client->debug_root = debugfs_create_file(client->display_name, 0664, 820 - dev->clients_debug_root, 821 - client, &debug_client_fops); 820 + dev->clients_debug_root, 821 + client, &debug_client_fops); 822 822 if (!client->debug_root) { 823 823 char buf[256], *path; 824 824 ··· 1636 1636 kfree(dev); 1637 1637 } 1638 1638 EXPORT_SYMBOL(ion_device_destroy); 1639 -