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

kernel-doc: fix new warning in net/phy/mdio_bus.c

Fix new kernel-doc warning:

Warning(drivers/net/phy/mdio_bus.c:49): No description found for parameter 'size'

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Randy Dunlap and committed by
David S. Miller
af58f1d6 8a622e71

+2 -3
+2 -3
drivers/net/phy/mdio_bus.c
··· 38 38 39 39 /** 40 40 * mdiobus_alloc_size - allocate a mii_bus structure 41 + * @size: extra amount of memory to allocate for private storage. 42 + * If non-zero, then bus->priv is points to that memory. 41 43 * 42 44 * Description: called by a bus driver to allocate an mii_bus 43 45 * structure to fill in. 44 - * 45 - * 'size' is an an extra amount of memory to allocate for private storage. 46 - * If non-zero, then bus->priv is points to that memory. 47 46 */ 48 47 struct mii_bus *mdiobus_alloc_size(size_t size) 49 48 {