From 8eeec634ea8259c06d9e7c8a59cb7a3e1a764e6c Mon Sep 17 00:00:00 2001 From: Johann Fischer Date: Tue, 13 Jul 2021 17:08:14 +0200 Subject: [PATCH] drivers: usb_dc_mcux_ehci: fix style Fix style, two lines are indented too far. Signed-off-by: Johann Fischer --- drivers/usb/device/usb_dc_mcux_ehci.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/device/usb_dc_mcux_ehci.c b/drivers/usb/device/usb_dc_mcux_ehci.c index 1507115d23d..525898908b4 100644 --- a/drivers/usb/device/usb_dc_mcux_ehci.c +++ b/drivers/usb/device/usb_dc_mcux_ehci.c @@ -78,8 +78,8 @@ static usb_device_struct_t dev_data; #if ((defined(USB_DEVICE_CONFIG_EHCI)) && (USB_DEVICE_CONFIG_EHCI > 0U)) /* EHCI device driver interface */ static const usb_device_controller_interface_struct_t ehci_iface = { - USB_DeviceEhciInit, USB_DeviceEhciDeinit, USB_DeviceEhciSend, - USB_DeviceEhciRecv, USB_DeviceEhciCancel, USB_DeviceEhciControl + USB_DeviceEhciInit, USB_DeviceEhciDeinit, USB_DeviceEhciSend, + USB_DeviceEhciRecv, USB_DeviceEhciCancel, USB_DeviceEhciControl }; #endif