summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Di Battista <rubendibattista@gmail.com>2020-08-06 12:12:30 +0200
committerTom Rini <trini@konsulko.com>2020-08-27 11:20:33 -0400
commit67e62c746823329a4a65356ab0fe81dfc2b8784b (patch)
tree17c15bc5ea5565b5726718aaa03c7b66c61c08d7
parentf87c80ade3911f3d518036a28370fe44c85a95c7 (diff)
downloadu-boot-67e62c746823329a4a65356ab0fe81dfc2b8784b.tar.gz
drivers: usb: Fix config indentation
The indentation was messing up with the scripts/build-whitelist.sh that was marking SYS_USB_EVENT_POLL_VIA_INT_QUEUE (and probably also the other indented options) erroneously as ad-hoc configure option with the following error: ``` Error: You must add new CONFIG options using Kconfig The following new ad-hoc CONFIG options were detected: CONFIG_SYS_USB_EVENT_POLL_VIA_INT_QUEUE ```
-rw-r--r--drivers/usb/Kconfig12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig
index 756a4ec402..34881a12b8 100644
--- a/drivers/usb/Kconfig
+++ b/drivers/usb/Kconfig
@@ -113,14 +113,14 @@ choice
---help---
Enable a polling mechanism for USB keyboard.
- config SYS_USB_EVENT_POLL
- bool "Interrupt polling"
+config SYS_USB_EVENT_POLL
+ bool "Interrupt polling"
- config SYS_USB_EVENT_POLL_VIA_INT_QUEUE
- bool "Poll via interrupt queue"
+config SYS_USB_EVENT_POLL_VIA_INT_QUEUE
+ bool "Poll via interrupt queue"
- config SYS_USB_EVENT_POLL_VIA_CONTROL_EP
- bool "Poll via control EP"
+config SYS_USB_EVENT_POLL_VIA_CONTROL_EP
+ bool "Poll via control EP"
endchoice