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

phy: exynos5-usbdrd: use correct format for structure description

We get warning with W=1 build:
drivers/phy/samsung/phy-exynos5-usbdrd.c:211: warning: Function
parameter or member 'phys' not described in 'exynos5_usbdrd_phy'
drivers/phy/samsung/phy-exynos5-usbdrd.c:211: warning: Function
parameter or member 'vbus' not described in 'exynos5_usbdrd_phy'
drivers/phy/samsung/phy-exynos5-usbdrd.c:211: warning: Function
parameter or member 'vbus_boost' not described in 'exynos5_usbdrd_phy'

These members are provided with description but format is not quite
right resulting in above warnings

Acked-by: Marek Szyprowski <m.szyprowski@samsung.com>
Link: https://lore.kernel.org/r/20200708132809.265967-5-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>

+3 -3
+3 -3
drivers/phy/samsung/phy-exynos5-usbdrd.c
··· 180 180 * @utmiclk: clock for utmi+ phy 181 181 * @itpclk: clock for ITP generation 182 182 * @drv_data: pointer to SoC level driver data structure 183 - * @phys[]: array for 'EXYNOS5_DRDPHYS_NUM' number of PHY 183 + * @phys: array for 'EXYNOS5_DRDPHYS_NUM' number of PHY 184 184 * instances each with its 'phy' and 'phy_cfg'. 185 185 * @extrefclk: frequency select settings when using 'separate 186 186 * reference clocks' for SS and HS operations 187 187 * @ref_clk: reference clock to PHY block from which PHY's 188 188 * operational clocks are derived 189 - * vbus: VBUS regulator for phy 190 - * vbus_boost: Boost regulator for VBUS present on few Exynos boards 189 + * @vbus: VBUS regulator for phy 190 + * @vbus_boost: Boost regulator for VBUS present on few Exynos boards 191 191 */ 192 192 struct exynos5_usbdrd_phy { 193 193 struct device *dev;