Home
last modified time | relevance | path

Searched refs:faux_dev (Results 1 – 3 of 3) sorted by relevance

/linux/include/linux/device/
H A Dfaux.h46 int (*probe)(struct faux_device *faux_dev);
47 void (*remove)(struct faux_device *faux_dev);
57 void faux_device_destroy(struct faux_device *faux_dev);
59 static inline void *faux_device_get_drvdata(const struct faux_device *faux_dev) in faux_device_get_drvdata() argument
61 return dev_get_drvdata(&faux_dev->dev); in faux_device_get_drvdata()
64 static inline void faux_device_set_drvdata(struct faux_device *faux_dev, void *data) in faux_device_set_drvdata() argument
66 dev_set_drvdata(&faux_dev->dev, data); in faux_device_set_drvdata()
/linux/drivers/gpu/drm/vkms/
H A Dvkms_drv.c182 vkms_device->faux_dev = fdev; in vkms_create()
259 fdev = config->dev->faux_dev; in vkms_destroy()
H A Dvkms_drv.h244 struct faux_device *faux_dev; member