2010-01-11 08:30:06

by Ben Dooks

[permalink] [raw]
Subject: Kconfig with multiple sources of integer value

I have a situation (and possibly some more) where having the ability
for multiple options to affect an integer value, in this case ensuring
a minimum value.

currently we have the following:

config S3C24XX_GPIO_EXTRA
int
default 128 if S3C24XX_GPIO_EXTRA128
default 64 if S3C24XX_GPIO_EXTRA64
default 0

and various machines select S3C24XX_GPIO_EXTRA64 or S3C24XX_GPIO_EXTR128
such as:

config MACH_OSIRIS
...
select S3C24XX_GPIO_EXTRA128


It would be nice if I could say

config S3C24XX_GPIO_EXTRA

and then

config MACH_OSIRIS
...
set_min S3C24XX_GPIO_EXTRA 128

or something similar.


--
Ben

Q: What's a light-year?
A: One-third less calories than a regular year.


2010-01-18 12:57:46

by Michal Marek

[permalink] [raw]
Subject: Re: Kconfig with multiple sources of integer value

On 11.1.2010 09:30, Ben Dooks wrote:
> It would be nice if I could say
>
> config S3C24XX_GPIO_EXTRA
>
> and then
>
> config MACH_OSIRIS
> ...
> set_min S3C24XX_GPIO_EXTRA 128
>
> or something similar.

Or maybe extend 'select' to accept
select FOO=<value>
and allow select for integer options too (in which case, the =<value>
would be mandatory). Then it would look like

config MACH_OSIRIS
...
select S3C24XX_GPIO_EXTRA=128

What do you think?

Michal