diff options
author | Simon Glass <sjg@chromium.org> | 2015-03-25 12:21:59 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:20 -0600 |
commit | de31213fb8f1cc25f7e9096029a44dee7a774167 (patch) | |
tree | 224edb789248837681a889d5ace46131fefe776d /include/dm/uclass-id.h | |
parent | 56a71f891b78351e949d98bdfc14d89fd0782640 (diff) | |
download | talos-obmc-uboot-de31213fb8f1cc25f7e9096029a44dee7a774167.tar.gz talos-obmc-uboot-de31213fb8f1cc25f7e9096029a44dee7a774167.zip |
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/uclass-id.h')
-rw-r--r-- | include/dm/uclass-id.h | 1 |
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, |