drivers/ioexpander/CMakeLists.txt: Aligned Cmake with Make
Add: iC-JX driver #11590 ISO1H812G driver #10426 ISO1I813T driver #10435 PCA9557 driver #16042 mcp23008 driver #10532 Signed-off-by: simbit18 <simbit18@gmail.com>
This commit is contained in:
parent
50bbad510a
commit
337c1128db
1 changed files with 20 additions and 0 deletions
|
|
@ -35,6 +35,18 @@ if(CONFIG_IOEXPANDER)
|
|||
list(APPEND SRCS ioe_dummy.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_ICJX)
|
||||
list(APPEND SRCS icjx.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_ISO1H812G)
|
||||
list(APPEND SRCS iso1h812g.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_ISO1I813T)
|
||||
list(APPEND SRCS iso1i813t.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_PCA9555)
|
||||
list(APPEND SRCS pca9555.c)
|
||||
endif()
|
||||
|
|
@ -43,6 +55,10 @@ if(CONFIG_IOEXPANDER)
|
|||
list(APPEND SRCS pca9538.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_PCA9557)
|
||||
list(APPEND SRCS pca9557.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_TCA64XX)
|
||||
list(APPEND SRCS tca64xx.c)
|
||||
endif()
|
||||
|
|
@ -55,6 +71,10 @@ if(CONFIG_IOEXPANDER)
|
|||
list(APPEND SRCS pcf8575.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_MCP23X08)
|
||||
list(APPEND SRCS mcp23x08.c)
|
||||
endif()
|
||||
|
||||
if(CONFIG_IOEXPANDER_MCP23X17)
|
||||
list(APPEND SRCS mcp23x17.c)
|
||||
endif()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue