blob: 71c434a6a5ee68166d96edebeea561aa0913bc8b [file] [log] [blame]
Russell King2a41e602014-01-10 23:23:37 +00001#ifndef COMPONENT_H
2#define COMPONENT_H
3
4struct device;
5
6struct component_ops {
7 int (*bind)(struct device *, struct device *, void *);
8 void (*unbind)(struct device *, struct device *, void *);
9};
10
11int component_add(struct device *, const struct component_ops *);
12void component_del(struct device *, const struct component_ops *);
13
14int component_bind_all(struct device *, void *);
15void component_unbind_all(struct device *, void *);
16
17struct master;
18
19struct component_master_ops {
Russell King2a41e602014-01-10 23:23:37 +000020 int (*bind)(struct device *);
21 void (*unbind)(struct device *);
22};
23
Russell King2a41e602014-01-10 23:23:37 +000024void component_master_del(struct device *,
25 const struct component_master_ops *);
26
Russell King6955b582014-04-19 11:18:01 +010027struct component_match;
28
29int component_master_add_with_match(struct device *,
30 const struct component_master_ops *, struct component_match *);
31void component_match_add(struct device *, struct component_match **,
32 int (*compare)(struct device *, void *), void *compare_data);
33
Russell King2a41e602014-01-10 23:23:37 +000034#endif