Commit 7242d42a authored by Thomas Wood's avatar Thomas Wood Committed by Greg Kroah-Hartman

drivers/w1/w1_int.c: Fix style errors.

Replace spaces at beginning of the string with tabs, and replace foo * bar with foo *bar in a pointer declaration.
Signed-off-by: default avatarThomas Wood <tommyandrena@gmail.com>
Acked-by: default avatarEvgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f80b2581
...@@ -38,7 +38,7 @@ module_param_named(search_count, w1_search_count, int, 0); ...@@ -38,7 +38,7 @@ module_param_named(search_count, w1_search_count, int, 0);
static int w1_enable_pullup = 1; static int w1_enable_pullup = 1;
module_param_named(enable_pullup, w1_enable_pullup, int, 0); 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_driver *driver,
struct device *device) struct device *device)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment