blob: 5512d84452f2d9a5c0bd9df4e4f06599b4e5aacf [file] [log] [blame]
Ben Dooksa1bdc7a2005-10-13 17:54:41 +01001
2/* initialisation functions */
3
4extern int devices_init(void);
5extern int buses_init(void);
6extern int classes_init(void);
7extern int firmware_init(void);
Michael Holzheu40394832006-05-09 12:53:49 +02008#ifdef CONFIG_SYS_HYPERVISOR
9extern int hypervisor_init(void);
10#else
11static inline int hypervisor_init(void) { return 0; }
12#endif
Ben Dooksa1bdc7a2005-10-13 17:54:41 +010013extern int platform_bus_init(void);
14extern int system_bus_init(void);
15extern int cpu_dev_init(void);
16extern int attribute_container_init(void);
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018extern int bus_add_device(struct device * dev);
Cornelia Huckc6a46692007-02-05 16:15:26 -080019extern void bus_attach_device(struct device * dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020extern void bus_remove_device(struct device * dev);
Greg Kroah-Hartman17407572006-05-02 16:59:59 +020021extern struct bus_type *get_bus(struct bus_type * bus);
22extern void put_bus(struct bus_type * bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24extern int bus_add_driver(struct device_driver *);
25extern void bus_remove_driver(struct device_driver *);
26
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080027extern void driver_detach(struct device_driver * drv);
Greg Kroah-Hartmanafdce752005-06-22 16:09:05 -070028extern int driver_probe_device(struct device_driver *, struct device *);
mochel@digitalimplant.org07e4a3e2005-03-21 10:52:54 -080029
Adrian Bunkf67d1152006-01-19 17:30:17 +010030extern void sysdev_shutdown(void);
31extern int sysdev_suspend(pm_message_t state);
32extern int sysdev_resume(void);
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034static inline struct class_device *to_class_dev(struct kobject *obj)
35{
36 return container_of(obj, struct class_device, kobj);
37}
38
39static inline
40struct class_device_attribute *to_class_dev_attr(struct attribute *_attr)
41{
42 return container_of(_attr, struct class_device_attribute, attr);
43}
44
Greg Kroah-Hartmanaa49b912006-06-20 13:59:20 -070045extern char *make_class_name(const char *name, struct kobject *kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Tejun Heo9ac78492007-01-20 16:00:26 +090047extern void devres_release_all(struct device *dev);
Greg Kroah-Hartman823bccf2007-04-13 13:15:19 -070048
49extern struct kset devices_subsys;