boards: arm: frdm_kw41z: Remove testing PWM pins

The TPM1/2 pin settings aren't used by any drivers or other devices and
only existed for testing purposes.  Remove them since nothing in tree
is utilizing these settings.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2021-04-12 14:37:56 -05:00 committed by Maureen Helm
commit b532d2917b

View file

@ -76,16 +76,6 @@ static int frdm_kw41z_pinmux_init(const struct device *dev)
pinmux_pin_set(portc, 19, PORT_PCR_MUX(kPORT_MuxAlt2));
#endif
#if defined(CONFIG_PWM) && DT_NODE_HAS_STATUS(DT_NODELABEL(tpm1), okay)
pinmux_pin_set(porta, 0, PORT_PCR_MUX(kPORT_MuxAlt5));
pinmux_pin_set(porta, 1, PORT_PCR_MUX(kPORT_MuxAlt5));
#endif
#if defined(CONFIG_PWM) && DT_NODE_HAS_STATUS(DT_NODELABEL(tpm2), okay)
pinmux_pin_set(portb, 16, PORT_PCR_MUX(kPORT_MuxAlt5));
pinmux_pin_set(portb, 17, PORT_PCR_MUX(kPORT_MuxAlt5));
#endif
return 0;
}