diff options
author | Eli Billauer <eli.billauer@gmail.com> | 2014-02-12 12:48:01 +0200 |
---|---|---|
committer | Nitin Garg <nitin.garg@freescale.com> | 2014-04-16 08:57:48 -0500 |
commit | 453ce0f41ba6c22b2b7de96492dfac9fdce0810c (patch) | |
tree | 4ab8edb5d8f1c92773a1d38c69f36d61471dd09c | |
parent | 856c4ea3b7a275ad7bdba4d77c82026d4c5fe2f8 (diff) |
Xillybus driver added to Kconfig and Makefile in drivers/char/
Signed-off-by: Eli Billauer <eli.billauer@gmail.com>
-rw-r--r-- | drivers/char/Kconfig | 1 | ||||
-rw-r--r-- | drivers/char/Makefile | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 91252530b7bc..09b813479de5 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig @@ -626,5 +626,6 @@ config MXS_VIIM help Support for access to MXS Virtual IIM device, most people should say N here. +source "drivers/char/xillybus/Kconfig" endmenu diff --git a/drivers/char/Makefile b/drivers/char/Makefile index 953be8dba511..e27e9fb1bfd7 100644 --- a/drivers/char/Makefile +++ b/drivers/char/Makefile @@ -64,3 +64,4 @@ obj-$(CONFIG_JS_RTC) += js-rtc.o js-rtc-y = rtc.o obj-$(CONFIG_TILE_SROM) += tile-srom.o +obj-$(CONFIG_XILLYBUS) += xillybus/ |