Lines Matching defs:dev
24 * @dev: the Zorro device structure to match against
44 static int zorro_device_probe(struct device *dev)
47 struct zorro_driver *drv = to_zorro_driver(dev->driver);
48 struct zorro_dev *z = to_zorro_dev(dev);
63 static void zorro_device_remove(struct device *dev)
65 struct zorro_dev *z = to_zorro_dev(dev);
66 struct zorro_driver *drv = to_zorro_driver(dev->driver);
114 * @dev: the Zorro device structure to match against
121 static int zorro_bus_match(struct device *dev, struct device_driver *drv)
123 struct zorro_dev *z = to_zorro_dev(dev);
133 static int zorro_uevent(const struct device *dev, struct kobj_uevent_env *env)
137 if (!dev)
140 z = to_zorro_dev(dev);
145 add_uevent_var(env, "ZORRO_SLOT_NAME=%s", dev_name(dev)) ||