diff options
author | Francesco Dolcini <francesco.dolcini@toradex.com> | 2022-07-12 18:33:41 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-09-28 16:09:48 +0100 |
commit | 8c4352976ff2121d6d3dce5b7641f3c30c03a415 (patch) | |
tree | 2f712befd6a7abf3aa8eb6d35ca9c2fb250b09bf /drivers/mfd | |
parent | fe55d732387ab39b08540fc93e829b409ec2161a (diff) |
mfd: stmpe: Remove rotator block from probe
Remove rotator block from probe, it is not used in any device tree file,
there is no related cell defined, it's just dead non-working code with no
of_compatible for it.
This is a preliminary change to allow probing by of_compatible and not
by a fixed name.
Signed-off-by: Francesco Dolcini <francesco.dolcini@toradex.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20220712163345.445811-2-francesco.dolcini@toradex.com
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/stmpe.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mfd/stmpe.c b/drivers/mfd/stmpe.c index aeb9ea55f97d..4aa4ac2ff406 100644 --- a/drivers/mfd/stmpe.c +++ b/drivers/mfd/stmpe.c @@ -1372,8 +1372,6 @@ static void stmpe_of_probe(struct stmpe_platform_data *pdata, pdata->blocks |= STMPE_BLOCK_ADC; } else if (of_node_name_eq(child, "stmpe_pwm")) { pdata->blocks |= STMPE_BLOCK_PWM; - } else if (of_node_name_eq(child, "stmpe_rotator")) { - pdata->blocks |= STMPE_BLOCK_ROTATOR; } } } |