On Wed, 2012-08-01 at 12:56 +0200, Lars-Peter Clausen wrote:

> You could do that by using a construct like below, but well...
> 
> config HAS_PWM
>     bool
> 
> config PWM
>     bool "PWM
>     depends on HAS_PWM
> 
> config PWM_CAN_BUILD_DRIVER_X
>     defbool I2C
>     select HAS_PWM
> 
> config PWM_DRIVER_X
>     tristate "PWM chip X support"
>     depends on PWM && PWM_CAN_BUILD_DRIVER_X
> 
> config PWM_CAN_BUILD_DRIVER_Y
>     defbool ARCH_Y
>     select HAS_PWM
> 
> config PWM_DRIVER_Y
>     tristate "PWM chip Y support"
>     depends on PWM && PWM_CAN_BUILD_DRIVER_Y

What selects the 'PWM_CAN_BUILD_DRIVER_FOO'?

-- Steve


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to