projects
/
openwrt
/
staging
/
jogo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
276a732
)
mxs: add kernel module for spi interface
author
Zoltan Herpai
<
[email protected]
>
Fri, 12 Dec 2014 11:10:04 +0000
(11:10 +0000)
committer
Zoltan Herpai
<
[email protected]
>
Fri, 12 Dec 2014 11:10:04 +0000
(11:10 +0000)
Signed-off-by: Michael Heimpold <
[email protected]
>
Signed-off-by: Zoltan HERPAI <
[email protected]
>
SVN-Revision: 43647
target/linux/mxs/modules.mk
patch
|
blob
|
history
diff --git
a/target/linux/mxs/modules.mk
b/target/linux/mxs/modules.mk
index 10ea3d685f6229a52cf125fa10a1e6fedd712a62..afcf23865c1ed7813628aa4926bacf86f3f2eac7 100644
(file)
--- a/
target/linux/mxs/modules.mk
+++ b/
target/linux/mxs/modules.mk
@@
-84,3
+84,18
@@
define KernelPackage/crypto-hw-dcp/description
endef
$(eval $(call KernelPackage,crypto-hw-dcp))
+
+define KernelPackage/spi-mxs
+ SUBMENU:=$(SPI_MENU)
+ TITLE:=Freescale i.MX23/28 SPI driver
+ DEPENDS:=@TARGET_mxs
+ KCONFIG:=CONFIG_SPI_MXS
+ FILES:=$(LINUX_DIR)/drivers/spi/spi-mxs.ko
+ AUTOLOAD:=$(call AutoProbe,spi-mxs)
+endef
+
+define KernelPackage/spi-mxs/description
+ Kernel module for Freescale i.MX23/28 SPI controller
+endef
+
+$(eval $(call KernelPackage,spi-mxs))