Re: [PATCH] stm class: Fix Kconfig symbols
From: James Clark
Date: Mon Jan 19 2026 - 11:32:21 EST
On 19/01/2026 3:46 pm, Leo Yan wrote:
On Mon, Jan 19, 2026 at 12:35:23PM +0000, James Clark wrote:
[...]
@@ -28,7 +28,7 @@ config STM_PROTO_BASIC
config STM_PROTO_SYS_T
tristate "MIPI SyS-T STM framing protocol driver"
- default CONFIG_STM
+ default STM
The help below here says "If you don't know what this is, say N." which
makes me wonder if this should be on by default or not?
STM_PROTO_BASIC is a must have config when enabling STM. While
STM_PROTO_SYS_T is not mandatory, but it is useful to build it so that
users can select the protocol dynamically at runtime.
Should probably change that text to say "If you don't know what this is, say Y" then? Otherwise it makes the default-on look like a mistake.
Also everything is in an "if STM" block, so "default STM" is a bit
redundant. It's not that obvious what the intention was.
They are two different things.
"if STM" expresses a dependency (the module depends on STM), while
"default STM" means the module will be selected by default if STM is
enabled.
Yeah they're the same, it was just a minor nit that "if STM, depends on STM" seemed redundant (and obviously more error prone). "default y" would also be the same and not repeat the same thing twice. Don't think it matters too much either way.
Thanks,
Leo
P.s. I also tried using the "select" and "imply" syntax to enable the
protocol configurations. Based on testing, I did not observe any
difference compared to using the "default" syntax.