Home
last modified time | relevance | path

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

/linux-6.15/drivers/base/
H A Dfaux.c27 const struct faux_device_ops *faux_ops; member
45 const struct faux_device_ops *faux_ops = faux_obj->faux_ops; in faux_probe() local
48 if (faux_ops && faux_ops->probe) in faux_probe()
49 ret = faux_ops->probe(faux_dev); in faux_probe()
58 const struct faux_device_ops *faux_ops = faux_obj->faux_ops; in faux_remove() local
60 if (faux_ops && faux_ops->remove) in faux_remove()
61 faux_ops->remove(faux_dev); in faux_remove()
115 const struct faux_device_ops *faux_ops, in faux_device_create_with_groups() argument
128 faux_obj->faux_ops = faux_ops; in faux_device_create_with_groups()
192 const struct faux_device_ops *faux_ops) in faux_device_create() argument
[all …]
/linux-6.15/include/linux/device/
H A Dfaux.h52 const struct faux_device_ops *faux_ops);
55 const struct faux_device_ops *faux_ops,