[RFC PATCHv2 3/7] OMAP SSI: Add OMAP SSI to the kernel configuration

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Carlos Chinea
Date: Friday, May 7, 2010 - 8:18 am

Add OMAP SSI device and driver to the kernel configuration

Signed-off-by: Carlos Chinea <carlos.chinea@nokia.com>
---
 arch/arm/mach-omap2/Makefile     |    3 +++
 drivers/hsi/Kconfig              |    2 ++
 drivers/hsi/Makefile             |    1 +
 drivers/hsi/controllers/Kconfig  |   13 +++++++++++++
 drivers/hsi/controllers/Makefile |    5 +++++
 5 files changed, 24 insertions(+), 0 deletions(-)
 create mode 100644 drivers/hsi/controllers/Kconfig
 create mode 100644 drivers/hsi/controllers/Makefile

diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
index 4b9fc57..106f0d5 100644
--- a/arch/arm/mach-omap2/Makefile
+++ b/arch/arm/mach-omap2/Makefile
@@ -97,6 +97,9 @@ obj-$(CONFIG_OMAP_IOMMU)		+= $(iommu-y)
 i2c-omap-$(CONFIG_I2C_OMAP)		:= i2c.o
 obj-y					+= $(i2c-omap-m) $(i2c-omap-y)
 
+omap-ssi-$(CONFIG_OMAP_SSI)		:= ssi.o
+obj-y					+= $(omap-ssi-m) $(omap-ssi-y)
+
 # Specific board support
 obj-$(CONFIG_MACH_OMAP_GENERIC)		+= board-generic.o
 obj-$(CONFIG_MACH_OMAP_H4)		+= board-h4.o
diff --git a/drivers/hsi/Kconfig b/drivers/hsi/Kconfig
index 5af62ce..07987b6 100644
--- a/drivers/hsi/Kconfig
+++ b/drivers/hsi/Kconfig
@@ -10,4 +10,6 @@ menuconfig HSI
 
 if HSI
 
+source "drivers/hsi/controllers/Kconfig"
+
 endif # HSI
diff --git a/drivers/hsi/Makefile b/drivers/hsi/Makefile
index b42b6cf..d020ae1 100644
--- a/drivers/hsi/Makefile
+++ b/drivers/hsi/Makefile
@@ -2,3 +2,4 @@
 # Makefile for HSI
 #
 obj-$(CONFIG_HSI)	+= hsi.o
+obj-y			+= controllers/
diff --git a/drivers/hsi/controllers/Kconfig b/drivers/hsi/controllers/Kconfig
new file mode 100644
index 0000000..398abba
--- /dev/null
+++ b/drivers/hsi/controllers/Kconfig
@@ -0,0 +1,13 @@
+#
+# HSI controllers configuration
+#
+comment "HSI controllers"
+
+config OMAP_SSI
+	tristate "OMAP SSI hardware driver"
+	depends on ARCH_OMAP && HSI
+	default n
+	---help---
+	  If you say Y here, you will enable the OMAP SSI hardware driver.
+
+	  If unsure, say N.
diff --git a/drivers/hsi/controllers/Makefile b/drivers/hsi/controllers/Makefile
new file mode 100644
index 0000000..c4ba2c2
--- /dev/null
+++ b/drivers/hsi/controllers/Makefile
@@ -0,0 +1,5 @@
+#
+# Makefile for HSI controllers drivers
+#
+
+obj-$(CONFIG_OMAP_SSI)		+= omap_ssi.o
-- 
1.5.6.5

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[RFC PATCHv2 0/7] HSI framework and drivers, Carlos Chinea, (Fri May 7, 8:18 am)
[RFC PATCHv2 1/7] HSI: Introducing HSI framework, Carlos Chinea, (Fri May 7, 8:18 am)
[RFC PATCHv2 2/7] OMAP SSI: Introducing OMAP SSI driver, Carlos Chinea, (Fri May 7, 8:18 am)
[RFC PATCHv2 3/7] OMAP SSI: Add OMAP SSI to the kernel con ..., Carlos Chinea, (Fri May 7, 8:18 am)
[RFC PATCHv2 4/7] HSI CHAR: Add HSI char device driver, Carlos Chinea, (Fri May 7, 8:18 am)
[RFC PATCHv2 6/7] HSI: Add HSI API documentation, Carlos Chinea, (Fri May 7, 8:18 am)
[RFC PATCHv2 7/7] HSI CHAR: Update ioctl-number.txt, Carlos Chinea, (Fri May 7, 8:18 am)
Re: [RFC PATCHv2 1/7] HSI: Introducing HSI framework, Randy Dunlap, (Fri May 7, 8:26 am)
Re: [RFC PATCHv2 1/7] HSI: Introducing HSI framework, Carlos Chinea, (Fri May 7, 9:11 am)
Re: [RFC PATCHv2 1/7] HSI: Introducing HSI framework, Randy Dunlap, (Fri May 7, 9:18 am)
Re: [RFC PATCHv2 1/7] HSI: Introducing HSI framework, Sebastien Jan, (Fri May 14, 7:22 am)
Re: [RFC PATCHv2 1/7] HSI: Introducing HSI framework, Carlos Chinea, (Tue May 18, 1:37 am)