kset: convert drivers/base/firmware.c to use kset_create
[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
LT
20extern void bus_remove_device(struct device * dev);
21
22extern int bus_add_driver(struct device_driver *);
23extern void bus_remove_driver(struct device_driver *);
24
07e4a3e2 25extern void driver_detach(struct device_driver * drv);
afdce75f 26extern int driver_probe_device(struct device_driver *, struct device *);
07e4a3e2 27
f67d115f
AB
28extern void sysdev_shutdown(void);
29extern int sysdev_suspend(pm_message_t state);
30extern int sysdev_resume(void);
31
1da177e4
LT
32static inline struct class_device *to_class_dev(struct kobject *obj)
33{
34 return container_of(obj, struct class_device, kobj);
35}
36
37static inline
38struct class_device_attribute *to_class_dev_attr(struct attribute *_attr)
39{
40 return container_of(_attr, struct class_device_attribute, attr);
41}
42
aa49b913 43extern char *make_class_name(const char *name, struct kobject *kobj);
1da177e4 44
2a013455 45extern int devres_release_all(struct device *dev);
823bccfc
GKH
46
47extern struct kset devices_subsys;
This page took 0.3045 seconds and 5 git commands to generate.