From: Nicolin Chen Date: Tue, 27 Aug 2024 16:59:38 +0000 (-0700) Subject: iommufd: Reorder struct forward declarations X-Git-Tag: v6.12-rc1~71^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3e6a7e3cda773adacc2fa4b9623d0a8c0f904d50;p=thirdparty%2Flinux.git iommufd: Reorder struct forward declarations Reorder struct forward declarations to alphabetic order to simplify maintenance, as upcoming patches will add more to the list. No functional change intended. Link: https://patch.msgid.link/r/c5dd87100f6f01389b838c63237e28c5dd373358.1724776335.git.nicolinc@nvidia.com Signed-off-by: Nicolin Chen Signed-off-by: Jason Gunthorpe --- diff --git a/include/linux/iommufd.h b/include/linux/iommufd.h index c2f2f6b9148e2..30f832a60ccb3 100644 --- a/include/linux/iommufd.h +++ b/include/linux/iommufd.h @@ -11,12 +11,12 @@ #include struct device; -struct iommufd_device; -struct page; -struct iommufd_ctx; -struct iommufd_access; struct file; struct iommu_group; +struct iommufd_access; +struct iommufd_ctx; +struct iommufd_device; +struct page; struct iommufd_device *iommufd_device_bind(struct iommufd_ctx *ictx, struct device *dev, u32 *id);