diff options
author | Jason Gunthorpe <jgg@nvidia.com> | 2021-03-30 09:53:08 -0600 |
---|---|---|
committer | Alex Williamson <alex.williamson@redhat.com> | 2021-04-06 11:55:11 -0600 |
commit | 1e04ec14204dec28131855d8dd160c3d55d12797 (patch) | |
tree | 0ae87bd70d23e8429d98b9af52e4241436276bbc /Documentation | |
parent | 07d47b4222d5d1cd933f01587dda00398d8daf40 (diff) | |
download | linux-stable-1e04ec14204dec28131855d8dd160c3d55d12797.tar.gz linux-stable-1e04ec14204dec28131855d8dd160c3d55d12797.tar.bz2 linux-stable-1e04ec14204dec28131855d8dd160c3d55d12797.zip |
vfio: Remove device_data from the vfio bus driver API
There are no longer any users, so it can go away. Everything is using
container_of now.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
Reviewed-by: Max Gurtovoy <mgurtovoy@nvidia.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Message-Id: <14-v3-225de1400dfc+4e074-vfio1_jgg@nvidia.com>
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/driver-api/vfio.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Documentation/driver-api/vfio.rst b/Documentation/driver-api/vfio.rst index 3337f337293a..decc68cb8114 100644 --- a/Documentation/driver-api/vfio.rst +++ b/Documentation/driver-api/vfio.rst @@ -254,8 +254,7 @@ vfio_unregister_group_dev() respectively:: void vfio_init_group_dev(struct vfio_device *device, struct device *dev, - const struct vfio_device_ops *ops, - void *device_data); + const struct vfio_device_ops *ops); int vfio_register_group_dev(struct vfio_device *device); void vfio_unregister_group_dev(struct vfio_device *device); |