mfd: tc6387xb: Remove unnecessary braces and correct style warnings
authorLee Jones <lee.jones@linaro.org>
Mon, 21 Jul 2014 14:10:35 +0000 (15:10 +0100)
committerLee Jones <lee.jones@linaro.org>
Fri, 25 Jul 2014 14:31:43 +0000 (15:31 +0100)
commitd5ce79ff20914dd187c25d000b6a8a25a47d7ebe
tree81a3fe6b4f54515e8432ba667885bc796a4ecd17
parent3103de8cd4e862c48a02327a21aec459c2c7dbb0
mfd: tc6387xb: Remove unnecessary braces and correct style warnings

This is part of an effort to clean-up the MFD subsystem.

WARNING: braces {} are not necessary for single statement blocks
+       if (!iomem) {
+               return -EINVAL;
+       }

WARNING: sizeof *tc6387xb should be sizeof(*tc6387xb)
+       tc6387xb = kzalloc(sizeof *tc6387xb, GFP_KERNEL);

WARNING: Prefer [subsystem eg: netdev]_info([subsystem]dev, ... then dev_info(dev, ... then pr_info(...  to printk(KERN_INFO ...
+       printk(KERN_INFO "Toshiba tc6387xb initialised\n");

total: 0 errors, 3 warnings, 242 lines checked

Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/tc6387xb.c
This page took 0.041023 seconds and 5 git commands to generate.