diff options
author | Simon Glass <sjg@chromium.org> | 2014-10-04 11:29:37 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-10-22 10:36:56 -0600 |
commit | da802b9e2726c7467e0b402efeb6ad3d975f1282 (patch) | |
tree | 58d17374f4fbe3ff045b5901563a9c4bdb85d408 /include/dm | |
parent | 3f0e935f2250110990875159552e1ff7eb7da39d (diff) | |
download | u-boot-imx-da802b9e2726c7467e0b402efeb6ad3d975f1282.zip u-boot-imx-da802b9e2726c7467e0b402efeb6ad3d975f1282.tar.gz u-boot-imx-da802b9e2726c7467e0b402efeb6ad3d975f1282.tar.bz2 |
dm: core: Add support for simple-bus
Add a driver for the simple-bus nodes, which allows devices within these
nodes to be bound.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/dm')
-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 0ea7a6f..a8944c9 100644 --- a/include/dm/uclass-id.h +++ b/include/dm/uclass-id.h @@ -19,6 +19,7 @@ enum uclass_id { UCLASS_TEST_FDT, UCLASS_TEST_BUS, UCLASS_SPI_EMUL, /* sandbox SPI device emulator */ + UCLASS_SIMPLE_BUS, /* U-Boot uclasses start here */ UCLASS_GPIO, /* Bank of general-purpose I/O pins */ |