diff options
author | Tomas Winkler <tomas.winkler@intel.com> | 2022-09-08 00:50:59 +0300 |
---|---|---|
committer | Joonas Lahtinen <joonas.lahtinen@linux.intel.com> | 2022-09-12 15:23:10 +0300 |
commit | fd72cb1bb5c71d2738a17cbdee6280365a451706 (patch) | |
tree | 50fe276c7d0d7d1a8424e8e992e909261f89c724 /include/linux/mei_aux.h | |
parent | 5c4d2536cfe105694b7045a8d7581631f44f391d (diff) | |
download | linux-fd72cb1bb5c71d2738a17cbdee6280365a451706.tar.xz |
mei: add kdoc for struct mei_aux_device
struct mei_aux_device is an interface structure
requires proper documenation.
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Reviewed-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Signed-off-by: Daniele Ceraolo Spurio <daniele.ceraolospurio@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220907215113.1596567-3-tomas.winkler@intel.com
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Diffstat (limited to 'include/linux/mei_aux.h')
-rw-r--r-- | include/linux/mei_aux.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/mei_aux.h b/include/linux/mei_aux.h index 587f25128848..a0cb587006d5 100644 --- a/include/linux/mei_aux.h +++ b/include/linux/mei_aux.h @@ -7,6 +7,12 @@ #include <linux/auxiliary_bus.h> +/** + * struct mei_aux_device - mei auxiliary device + * @aux_dev: - auxiliary device object + * @irq: interrupt driving the mei auxiliary device + * @bar: mmio resource bar reserved to mei auxiliary device + */ struct mei_aux_device { struct auxiliary_device aux_dev; int irq; |