Driver core: remove put_bus()
[deliverable/linux.git] / drivers / base / base.h
CommitLineData
a1bdc7aa
BD
1
2/* initialisation functions */
3
4extern int devices_init(void);
5extern int buses_init(void);
6extern int classes_init(void);
7extern int firmware_init(void);
4039483f
MH
8#ifdef CONFIG_SYS_HYPERVISOR
9extern int hypervisor_init(void);
10#else
11static inline int hypervisor_init(void) { return 0; }
12#endif
a1bdc7aa
BD
13extern int platform_bus_init(void);
14extern int system_bus_init(void);
15extern int cpu_dev_init(void);
16extern int attribute_container_init(void);
17
1da177e4 18extern int bus_add_device(struct device * dev);
c6a46696 19extern void bus_attach_device(struct device * dev);
1da177e4 20extern void bus_remove_device(struct device * dev);
1740757e 21extern struct bus_type *get_bus(struct bus_type * bus);
1da177e4
LT
22
23extern int bus_add_driver(struct device_driver *);
24extern void bus_remove_driver(struct device_driver *);
25
07e4a3e2 26extern void driver_detach(struct device_driver * drv);
afdce75f 27extern int driver_probe_device(struct device_driver *, struct device *);
07e4a3e2 28
f67d115f
AB
29extern void sysdev_shutdown(void);
30extern int sysdev_suspend(pm_message_t state);
31extern int sysdev_resume(void);
32
1da177e4
LT
33static inline struct class_device *to_class_dev(struct kobject *obj)
34{
35 return container_of(obj, struct class_device, kobj);
36}
37
38static inline
39struct class_device_attribute *to_class_dev_attr(struct attribute *_attr)
40{
41 return container_of(_attr, struct class_device_attribute, attr);
42}
43
aa49b913 44extern char *make_class_name(const char *name, struct kobject *kobj);
1da177e4 45
2a013455 46extern int devres_release_all(struct device *dev);
823bccfc
GKH
47
48extern struct kset devices_subsys;
This page took 0.318018 seconds and 5 git commands to generate.