Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: ks7010: add struct comment to ks_sdio_card

ks_sdio_card structure description does not have a kernel doc format
comment.

Add kernel doc format comment to struct ks_sdio_card.

Signed-off-by: Tobin C. Harding <me@tobin.cc>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Tobin C. Harding and committed by
Greg Kroah-Hartman
3dfb942f 18bd6dd1

+8
+8
drivers/staging/ks7010/ks7010_sdio.h
··· 85 85 86 86 #define KS7010_IRAM_ADDRESS 0x06000000 87 87 88 + /** 89 + * struct ks_sdio_card - SDIO device data. 90 + * 91 + * Structure is used as the &struct sdio_func private data. 92 + * 93 + * @func: Pointer to the SDIO function device. 94 + * @priv: Pointer to the &struct net_device private data. 95 + */ 88 96 struct ks_sdio_card { 89 97 struct sdio_func *func; 90 98 struct ks_wlan_private *priv;