diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2021-08-13 13:36:14 +0300 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2021-08-13 13:38:48 +0300 |
commit | 7a3dc4f35bf8e1a07e5c3f8ecc8ac923f48493fe (patch) | |
tree | b741eb3d21f7dd0bbdfb9cbe78b1178a95c484c9 | |
parent | dbbc93576e03fbe24b365fab0e901eb442237a8a (diff) | |
download | linux-7a3dc4f35bf8e1a07e5c3f8ecc8ac923f48493fe.tar.xz |
driver core: Add missing kernel doc for device::msi_lock
Fixes: 77e89afc25f3 ("PCI/MSI: Protect msi_desc::masked for multi-MSI")
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | include/linux/device.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index e53aa5065f58..65d84b67b024 100644 --- a/include/linux/device.h +++ b/include/linux/device.h @@ -407,6 +407,7 @@ struct dev_links_info { * @em_pd: device's energy model performance domain * @pins: For device pin management. * See Documentation/driver-api/pin-control.rst for details. + * @msi_lock: Lock to protect MSI mask cache and mask register * @msi_list: Hosts MSI descriptors * @msi_domain: The generic MSI domain this device is using. * @numa_node: NUMA node this device is close to. |