summaryrefslogtreecommitdiff
path: root/include/dm
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-03-25 12:21:59 -0600
committerSimon Glass <sjg@chromium.org>2015-04-18 11:11:20 -0600
commitde31213fb8f1cc25f7e9096029a44dee7a774167 (patch)
tree224edb789248837681a889d5ace46131fefe776d /include/dm
parent56a71f891b78351e949d98bdfc14d89fd0782640 (diff)
dm: usb: Add a uclass for USB controllers
Add a uclass that can represent a USB controller. For now we do not create devices for things attached to the controller. This will be added later. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/dm')
-rw-r--r--include/dm/uclass-id.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/dm/uclass-id.h b/include/dm/uclass-id.h
index 79b51d346a..95bd249956 100644
--- a/include/dm/uclass-id.h
+++ b/include/dm/uclass-id.h
@@ -40,6 +40,7 @@ enum uclass_id {
UCLASS_PCH, /* x86 platform controller hub */
UCLASS_ETH, /* Ethernet device */
UCLASS_LPC, /* x86 'low pin count' interface */
+ UCLASS_USB, /* USB bus */
UCLASS_COUNT,
UCLASS_INVALID = -1,