Skip to content

Commit

Permalink
c2port: fix bogus Kconfig "default no"
Browse files Browse the repository at this point in the history
Strictly speaking "no" is a valid, but undefined, Kconfig symbol. But what
obviously was meant here was "n".

While we're touching this Kconfig file also drop the superfluous
dependency on C2PORT for C2PORT_DURAMAR_2150. Its Kconfig entry is
already wrapped in "if C2PORT" and "endif".

Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
  • Loading branch information
Paul Bolle authored and Jiri Kosina committed May 7, 2012
1 parent 15ed103 commit e1d2060
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/misc/c2port/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
menuconfig C2PORT
tristate "Silicon Labs C2 port support (EXPERIMENTAL)"
depends on EXPERIMENTAL
default no
default n
help
This option enables support for Silicon Labs C2 port used to
program Silicon micro controller chips (and other 8051 compatible).
Expand All @@ -23,8 +23,8 @@ if C2PORT

config C2PORT_DURAMAR_2150
tristate "C2 port support for Eurotech's Duramar 2150 (EXPERIMENTAL)"
depends on X86 && C2PORT
default no
depends on X86
default n
help
This option enables C2 support for the Eurotech's Duramar 2150
on board micro controller.
Expand Down

0 comments on commit e1d2060

Please sign in to comment.