diff options
author | Thomas Huth <thuth@redhat.com> | 2022-04-13 11:44:16 +0200 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2022-04-25 13:54:15 +0200 |
commit | d4b2945dc9c05a1b24282f4c6b2f41a2a52d18dd (patch) | |
tree | f0037e65abe9e0be7cbd00baf6b0712f7480a1b5 /drivers/s390 | |
parent | 41cd81abafdc4e58a93fcb677712a76885e3ca25 (diff) | |
download | linux-stable-d4b2945dc9c05a1b24282f4c6b2f41a2a52d18dd.tar.gz linux-stable-d4b2945dc9c05a1b24282f4c6b2f41a2a52d18dd.tar.bz2 linux-stable-d4b2945dc9c05a1b24282f4c6b2f41a2a52d18dd.zip |
s390/vfio-ap: remove superfluous MODULE_DEVICE_TABLE declaration
The vfio_ap module tries to register for the vfio_ap bus - but that's
the interface that it provides itself, so this does not make much sense,
thus let's simply drop this statement now.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Tony Krowiak <akrowiak@linux.ibm.com>
Link: https://lore.kernel.org/r/20220413094416.412114-1-thuth@redhat.com
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'drivers/s390')
-rw-r--r-- | drivers/s390/crypto/vfio_ap_drv.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/s390/crypto/vfio_ap_drv.c b/drivers/s390/crypto/vfio_ap_drv.c index 29ebd54f8919..4ac9c6521ec1 100644 --- a/drivers/s390/crypto/vfio_ap_drv.c +++ b/drivers/s390/crypto/vfio_ap_drv.c @@ -46,8 +46,6 @@ static struct ap_device_id ap_queue_ids[] = { { /* end of sibling */ }, }; -MODULE_DEVICE_TABLE(vfio_ap, ap_queue_ids); - static struct ap_matrix_mdev *vfio_ap_mdev_for_queue(struct vfio_ap_queue *q) { struct ap_matrix_mdev *matrix_mdev; |