diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2023-12-23 22:43:19 +0300 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2024-01-02 15:31:48 +0300 |
commit | 87d8f1ee1d4070571095859d310f6951440f288c (patch) | |
tree | ec2436ce3833fc17c5472eafaa3297011e89e93a /include/linux/wmi.h | |
parent | 669f157fd7ad987dd5beba46576ec357f4d6c686 (diff) | |
download | linux-87d8f1ee1d4070571095859d310f6951440f288c.tar.xz |
platform/x86: wmi: linux/wmi.h: fix Excess kernel-doc description warning
Remove the "private:" comment to prevent the kernel-doc warning:
include/linux/wmi.h:27: warning: Excess struct member 'setable' description in 'wmi_device'
Either a struct member is documented (via kernel-doc) or it's private,
but not both.
Fixes: b4cc979588ee ("platform/x86: wmi: Add kernel doc comments")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Armin Wolf <W_Armin@gmx.de>
Cc: Hans de Goede <hdegoede@redhat.com>
Cc: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Cc: platform-driver-x86@vger.kernel.org
Reviewed-by: Armin Wolf <W_Armin@gmx.de>
Link: https://lore.kernel.org/r/20231223194321.23084-1-rdunlap@infradead.org
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'include/linux/wmi.h')
-rw-r--r-- | include/linux/wmi.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/wmi.h b/include/linux/wmi.h index 50f7f1e4fd4f..686291b87852 100644 --- a/include/linux/wmi.h +++ b/include/linux/wmi.h @@ -21,8 +21,6 @@ */ struct wmi_device { struct device dev; - - /* private: used by the WMI driver core */ bool setable; }; |