diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2021-05-04 04:17:20 -0400 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2021-05-04 04:19:59 -0400 |
commit | d7bce85aa7b92b5de8f69b3bcedfe51d7b1aabe1 (patch) | |
tree | 56d55b0cab52bad45e3e6761d5252e083696d0a9 /include/linux/virtio_pci_modern.h | |
parent | 0f8a0b0b095fd9b301523c0f78686f5ac6fda564 (diff) | |
download | lwn-d7bce85aa7b92b5de8f69b3bcedfe51d7b1aabe1.tar.gz lwn-d7bce85aa7b92b5de8f69b3bcedfe51d7b1aabe1.zip |
virtio_pci_modern: correct sparse tags for notify
When switching virtio_pci_modern to use a helper for mappings we lost an
__iomem tag. Restore it.
Reported-by: kernel test robot <lkp@intel.com>
Fixes: 9e3bb9b79a71 ("virtio_pci_modern: introduce helper to map vq notify area")
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/linux/virtio_pci_modern.h')
-rw-r--r-- | include/linux/virtio_pci_modern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/virtio_pci_modern.h b/include/linux/virtio_pci_modern.h index cdfabbefacdf..6a95b58fd0f4 100644 --- a/include/linux/virtio_pci_modern.h +++ b/include/linux/virtio_pci_modern.h @@ -101,8 +101,8 @@ void vp_modern_set_queue_size(struct virtio_pci_modern_device *mdev, u16 vp_modern_get_queue_size(struct virtio_pci_modern_device *mdev, u16 idx); u16 vp_modern_get_num_queues(struct virtio_pci_modern_device *mdev); -void *vp_modern_map_vq_notify(struct virtio_pci_modern_device *mdev, - u16 index, resource_size_t *pa); +void __iomem * vp_modern_map_vq_notify(struct virtio_pci_modern_device *mdev, + u16 index, resource_size_t *pa); int vp_modern_probe(struct virtio_pci_modern_device *mdev); void vp_modern_remove(struct virtio_pci_modern_device *mdev); #endif |