Skip to content

Commit

Permalink
vfio/mdev: make mdev.h standalone includable
Browse files Browse the repository at this point in the history
Include <linux/device.h> and <linux/uuid.h> so that users of this headers
don't need to do that and remove those includes that aren't needed
any more.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eric Farman <farman@linux.ibm.com>
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Reviewed-by: Tony Krowiak <akrowiak@linux.ibm.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Reviewed-by: Kirti Wankhede <kwankhede@nvidia.com>
Link: https://lore.kernel.org/r/20220923092652.100656-4-hch@lst.de
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
  • Loading branch information
Christoph Hellwig authored and Alex Williamson committed Oct 4, 2022
1 parent 1aa3834 commit bdef2b7
Show file tree
Hide file tree
Showing 10 changed files with 3 additions and 13 deletions.
2 changes: 0 additions & 2 deletions drivers/gpu/drm/i915/gvt/kvmgt.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
*/

#include <linux/init.h>
#include <linux/device.h>
#include <linux/mm.h>
#include <linux/kthread.h>
#include <linux/sched/mm.h>
Expand All @@ -43,7 +42,6 @@
#include <linux/rbtree.h>
#include <linux/spinlock.h>
#include <linux/eventfd.h>
#include <linux/uuid.h>
#include <linux/mdev.h>
#include <linux/debugfs.h>

Expand Down
1 change: 0 additions & 1 deletion drivers/s390/cio/vfio_ccw_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

#include <linux/module.h>
#include <linux/init.h>
#include <linux/device.h>
#include <linux/slab.h>
#include <linux/mdev.h>

Expand Down
1 change: 0 additions & 1 deletion drivers/s390/crypto/vfio_ap_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#define _VFIO_AP_PRIVATE_H_

#include <linux/types.h>
#include <linux/device.h>
#include <linux/mdev.h>
#include <linux/delay.h>
#include <linux/mutex.h>
Expand Down
2 changes: 0 additions & 2 deletions drivers/vfio/mdev/mdev_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
*/

#include <linux/module.h>
#include <linux/device.h>
#include <linux/slab.h>
#include <linux/uuid.h>
#include <linux/sysfs.h>
#include <linux/mdev.h>

Expand Down
1 change: 0 additions & 1 deletion drivers/vfio/mdev/mdev_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* Kirti Wankhede <kwankhede@nvidia.com>
*/

#include <linux/device.h>
#include <linux/iommu.h>
#include <linux/mdev.h>

Expand Down
2 changes: 0 additions & 2 deletions drivers/vfio/mdev/mdev_sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@

#include <linux/sysfs.h>
#include <linux/ctype.h>
#include <linux/device.h>
#include <linux/slab.h>
#include <linux/uuid.h>
#include <linux/mdev.h>

#include "mdev_private.h"
Expand Down
3 changes: 3 additions & 0 deletions include/linux/mdev.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
#ifndef MDEV_H
#define MDEV_H

#include <linux/device.h>
#include <linux/uuid.h>

struct mdev_type;

struct mdev_device {
Expand Down
1 change: 0 additions & 1 deletion samples/vfio-mdev/mbochs.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
*/
#include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
Expand Down
1 change: 0 additions & 1 deletion samples/vfio-mdev/mdpy.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
*/
#include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/vmalloc.h>
Expand Down
2 changes: 0 additions & 2 deletions samples/vfio-mdev/mtty.c
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,13 @@

#include <linux/init.h>
#include <linux/module.h>
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/poll.h>
#include <linux/slab.h>
#include <linux/cdev.h>
#include <linux/sched.h>
#include <linux/wait.h>
#include <linux/uuid.h>
#include <linux/vfio.h>
#include <linux/iommu.h>
#include <linux/sysfs.h>
Expand Down

0 comments on commit bdef2b7

Please sign in to comment.