Lines Matching defs:adev
339 struct auxiliary_device *adev = _adev;
341 auxiliary_device_delete(adev);
342 auxiliary_device_uninit(adev);
347 struct auxiliary_device *adev = to_auxiliary_dev(dev);
348 struct jh71x0_reset_adev *rdev = to_jh71x0_reset_adev(adev);
358 struct auxiliary_device *adev;
367 adev = &rdev->adev;
368 adev->name = adev_name;
369 adev->dev.parent = priv->dev;
370 adev->dev.release = jh7110_reset_adev_release;
371 adev->id = adev_id;
373 ret = auxiliary_device_init(adev);
377 ret = auxiliary_device_add(adev);
379 auxiliary_device_uninit(adev);
384 jh7110_reset_unregister_adev, adev);