drivers/w1/w1_int.c: Fix style errors.
authorThomas Wood <tommyandrena@gmail.com>
Fri, 30 May 2014 23:10:20 +0000 (16:10 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 20 Jun 2014 00:45:13 +0000 (17:45 -0700)
Replace spaces at beginning of the string with tabs, and replace foo * bar with foo *bar in a pointer declaration.

Signed-off-by: Thomas Wood <tommyandrena@gmail.com>
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/w1/w1_int.c

index 728039d2efe1e28c6cca5f8a2de57c2a42c639f7..dfb6644028c046ecf6a9b1e827fdd6bfd7054c53 100644 (file)
@@ -38,7 +38,7 @@ module_param_named(search_count, w1_search_count, int, 0);
 static int w1_enable_pullup = 1;
 module_param_named(enable_pullup, w1_enable_pullup, int, 0);
 
-static struct w1_master * w1_alloc_dev(u32 id, int slave_count, int slave_ttl,
+static struct w1_master *w1_alloc_dev(u32 id, int slave_count, int slave_ttl,
                                       struct device_driver *driver,
                                       struct device *device)
 {
@@ -116,13 +116,13 @@ int w1_add_master_device(struct w1_bus_master *master)
        struct w1_netlink_msg msg;
        int id, found;
 
-        /* validate minimum functionality */
-        if (!(master->touch_bit && master->reset_bus) &&
-            !(master->write_bit && master->read_bit) &&
+       /* validate minimum functionality */
+       if (!(master->touch_bit && master->reset_bus) &&
+           !(master->write_bit && master->read_bit) &&
            !(master->write_byte && master->read_byte && master->reset_bus)) {
                printk(KERN_ERR "w1_add_master_device: invalid function set\n");
                return(-EINVAL);
-        }
+       }
 
        /* Lock until the device is added (or not) to w1_masters. */
        mutex_lock(&w1_mlock);
This page took 0.025107 seconds and 5 git commands to generate.