Home
last modified time | relevance | path

Searched refs:faux_ops (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/base/
H A Dfaux.c27 const struct faux_device_ops *faux_ops; member
44 const struct faux_device_ops *faux_ops = faux_obj->faux_ops; in faux_probe() local
47 if (faux_ops && faux_ops->probe) { in faux_probe()
48 ret = faux_ops->probe(faux_dev); in faux_probe()
58 if (ret && faux_ops && faux_ops->remove) in faux_probe()
59 faux_ops->remove(faux_dev); in faux_probe()
68 const struct faux_device_ops *faux_ops = faux_obj->faux_ops; in faux_remove() local
72 if (faux_ops && faux_ops->remove) in faux_remove()
73 faux_ops->remove(faux_dev); in faux_remove()
128 const struct faux_device_ops *faux_ops, in faux_device_create_with_groups() argument
[all …]
/linux/include/linux/device/
H A Dfaux.h52 const struct faux_device_ops *faux_ops);
55 const struct faux_device_ops *faux_ops,