diff options
Diffstat (limited to 'drivers/w1/w1_int.c')
-rw-r--r-- | drivers/w1/w1_int.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/drivers/w1/w1_int.c b/drivers/w1/w1_int.c index c3f67eafc7ec..4724693ad51d 100644 --- a/drivers/w1/w1_int.c +++ b/drivers/w1/w1_int.c | |||
@@ -26,19 +26,10 @@ | |||
26 | #include "w1.h" | 26 | #include "w1.h" |
27 | #include "w1_log.h" | 27 | #include "w1_log.h" |
28 | #include "w1_netlink.h" | 28 | #include "w1_netlink.h" |
29 | #include "w1_int.h" | ||
29 | 30 | ||
30 | static u32 w1_ids = 1; | 31 | static u32 w1_ids = 1; |
31 | 32 | ||
32 | extern struct device_driver w1_master_driver; | ||
33 | extern struct bus_type w1_bus_type; | ||
34 | extern struct device w1_master_device; | ||
35 | extern int w1_max_slave_count; | ||
36 | extern int w1_max_slave_ttl; | ||
37 | extern struct list_head w1_masters; | ||
38 | extern spinlock_t w1_mlock; | ||
39 | |||
40 | extern int w1_process(void *); | ||
41 | |||
42 | static struct w1_master * w1_alloc_dev(u32 id, int slave_count, int slave_ttl, | 33 | static struct w1_master * w1_alloc_dev(u32 id, int slave_count, int slave_ttl, |
43 | struct device_driver *driver, | 34 | struct device_driver *driver, |
44 | struct device *device) | 35 | struct device *device) |
@@ -103,7 +94,7 @@ static struct w1_master * w1_alloc_dev(u32 id, int slave_count, int slave_ttl, | |||
103 | return dev; | 94 | return dev; |
104 | } | 95 | } |
105 | 96 | ||
106 | void w1_free_dev(struct w1_master *dev) | 97 | static void w1_free_dev(struct w1_master *dev) |
107 | { | 98 | { |
108 | device_unregister(&dev->dev); | 99 | device_unregister(&dev->dev); |
109 | } | 100 | } |