diff options
author | 2025-07-16 17:46:26 -0500 | |
---|---|---|
committer | 2025-07-21 16:31:37 +0200 | |
commit | 82d8cc9542b8b6588a3c7c7e3db8936243163408 (patch) | |
tree | 77b80df324dac0372764a9154050bbf642f04877 | |
parent | usb: gadget: f_uac1: replace scnprintf() with sysfs_emit() (diff) | |
download | wireguard-linux-82d8cc9542b8b6588a3c7c7e3db8936243163408.tar.xz wireguard-linux-82d8cc9542b8b6588a3c7c7e3db8936243163408.zip |
usb: chipidea: imx: Add a missing blank line
Fix a checkpatch warning:
CHECK: Please use a blank line after function/struct/union/enum declarations
Reported-by: Xu Yang <xu.yang_2@nxp.com>
Acked-by: Peter Chen <peter.chen@kernel.org>
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Link: https://lore.kernel.org/r/36d1c961-319e-4457-bdc1-69f8b6bed33e@sabinyo.mountain
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/chipidea/usbmisc_imx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/chipidea/usbmisc_imx.c b/drivers/usb/chipidea/usbmisc_imx.c index 0b8b980409bc..3d20c5e76c6a 100644 --- a/drivers/usb/chipidea/usbmisc_imx.c +++ b/drivers/usb/chipidea/usbmisc_imx.c @@ -1118,6 +1118,7 @@ static int usbmisc_imx6sx_power_lost_check(struct imx_usbmisc_data *data) else return 0; } + static int usbmisc_s32g_power_lost_check(struct imx_usbmisc_data *data) { return 1; |