aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/w1/w1_int.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/w1/w1_int.c')
-rw-r--r--drivers/w1/w1_int.c13
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
30static u32 w1_ids = 1; 31static u32 w1_ids = 1;
31 32
32extern struct device_driver w1_master_driver;
33extern struct bus_type w1_bus_type;
34extern struct device w1_master_device;
35extern int w1_max_slave_count;
36extern int w1_max_slave_ttl;
37extern struct list_head w1_masters;
38extern spinlock_t w1_mlock;
39
40extern int w1_process(void *);
41
42static struct w1_master * w1_alloc_dev(u32 id, int slave_count, int slave_ttl, 33static 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
106void w1_free_dev(struct w1_master *dev) 97static void w1_free_dev(struct w1_master *dev)
107{ 98{
108 device_unregister(&dev->dev); 99 device_unregister(&dev->dev);
109} 100}