29 lines
477 B
Plaintext
29 lines
477 B
Plaintext
#
|
|
# L3 bus configuration
|
|
#
|
|
|
|
menu "L3 support"
|
|
|
|
config L3
|
|
tristate "L3 support"
|
|
|
|
config L3_ALGOBIT
|
|
boolean "L3 bit-banging interfaces"
|
|
depends on L3
|
|
|
|
config L3_BIT_SA1100_GPIO
|
|
boolean "SA11x0 GPIO adapter"
|
|
depends on L3_ALGOBIT && ARCH_SA1100
|
|
|
|
# i2c must come before this
|
|
config BIT_SA1100_GPIO
|
|
boolean
|
|
depends on L3_BIT_SA1100_GPIO || I2C_BIT_SA1100_GPIO=y
|
|
default y
|
|
|
|
config L3_BIT_S3C_GPIO
|
|
boolean "S3C GPIO adapter"
|
|
depends on L3_ALGOBIT && ARCH_S3C2410
|
|
|
|
endmenu
|