]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/base/base.h
USB: gadget: gadget_is_{dualspeed,otg} predicates and cleanup
[mirror_ubuntu-bionic-kernel.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
GKH
21extern struct bus_type *get_bus(struct bus_type * bus);
22extern void put_bus(struct bus_type * bus);
1da177e4
LT
23
24extern int bus_add_driver(struct device_driver *);
25extern void bus_remove_driver(struct device_driver *);
26
07e4a3e2 27extern void driver_detach(struct device_driver * drv);
afdce75f 28extern int driver_probe_device(struct device_driver *, struct device *);
07e4a3e2 29
f67d115f
AB
30extern void sysdev_shutdown(void);
31extern int sysdev_suspend(pm_message_t state);
32extern int sysdev_resume(void);
33
1da177e4
LT
34static 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
aa49b913 45extern char *make_class_name(const char *name, struct kobject *kobj);
1da177e4 46
2a013455 47extern int devres_release_all(struct device *dev);
823bccfc
GKH
48
49extern struct kset devices_subsys;