diff options
| author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-27 08:44:53 -0500 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-01-27 08:44:53 -0500 |
| commit | cc11f372e9371ec3a3dad02396dbe0a55eec0b8f (patch) | |
| tree | fd22bdac975ee61053e787ad96c912fddc485370 /include/linux/component.h | |
| parent | 5b4af8b6397c2da6e3c05893d974b6559441901d (diff) | |
| parent | 77d143de75812596a58d126606f42d1214e09dde (diff) | |
Merge branch 'master' into staging-next
We need the network changes in staging-next in order to be able to fix
up the rtl8821ae driver to build properly.
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/component.h')
| -rw-r--r-- | include/linux/component.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/include/linux/component.h b/include/linux/component.h new file mode 100644 index 000000000000..68870182ca1e --- /dev/null +++ b/include/linux/component.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | #ifndef COMPONENT_H | ||
| 2 | #define COMPONENT_H | ||
| 3 | |||
| 4 | struct device; | ||
| 5 | |||
| 6 | struct component_ops { | ||
| 7 | int (*bind)(struct device *, struct device *, void *); | ||
| 8 | void (*unbind)(struct device *, struct device *, void *); | ||
| 9 | }; | ||
| 10 | |||
| 11 | int component_add(struct device *, const struct component_ops *); | ||
| 12 | void component_del(struct device *, const struct component_ops *); | ||
| 13 | |||
| 14 | int component_bind_all(struct device *, void *); | ||
| 15 | void component_unbind_all(struct device *, void *); | ||
| 16 | |||
| 17 | struct master; | ||
| 18 | |||
| 19 | struct component_master_ops { | ||
| 20 | int (*add_components)(struct device *, struct master *); | ||
| 21 | int (*bind)(struct device *); | ||
| 22 | void (*unbind)(struct device *); | ||
| 23 | }; | ||
| 24 | |||
| 25 | int component_master_add(struct device *, const struct component_master_ops *); | ||
| 26 | void component_master_del(struct device *, | ||
| 27 | const struct component_master_ops *); | ||
| 28 | |||
| 29 | int component_master_add_child(struct master *master, | ||
| 30 | int (*compare)(struct device *, void *), void *compare_data); | ||
| 31 | |||
| 32 | #endif | ||
