lkml.org 
[lkml]   [2003]   [Aug]   [8]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: 2.6: Problem multiple bool/tristate prompts
Hi,

On Fri, 8 Aug 2003, Adrian Bunk wrote:

> config BLK_DEV_PS2
> tristate "PS/2 ESDI hard disk support" if BROKEN_MODULAR
> bool "PS/2 ESDI hard disk support" if !BROKEN_MODULAR
>
>
> Every "make *config" gives the warning
>
> drivers/block/Kconfig:45: prompt redefined
> drivers/block/Kconfig:45:warning: type of 'BLK_DEV_PS2' redefined from
> 'tristate' to 'boolean'
>
> and the symbol is handled as tristate although BROKEN_MODULAR isn't
> defined.

A symbol can have only a single type and the warning is a bit misleading,
the new type definition is simply ignored.
I'm not sure what you're trying makes really sense, but you have to use a
separate symbol:

config BLK_DEV_PS2_B
bool "PS/2 ESDI hard disk support" if !BROKEN_MODULAR

config BLK_DEV_PS2
tristate "PS/2 ESDI hard disk support" if BROKEN_MODULAR
default BLK_DEV_PS2_B

bye, Roman

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

\
 
 \ /
  Last update: 2005-03-22 13:47    [W:0.058 / U:5.948 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site