On 12/29/19 4:32 PM, Marc Kleine-Budde wrote:
On 12/12/19 5:15 PM, Dan Murphy wrote:...which was my fault. :) Please have a look at
static int tcan4x5x_parse_config(struct m_can_classdev *cdev)For some reason, this hunk doesn't apply, due to the additional:
{
struct tcan4x5x_priv *tcan4x5x = cdev->device_data;
@@ -383,8 +393,10 @@ static int tcan4x5x_parse_config(struct m_can_classdev *cdev)
tcan4x5x->device_state_gpio = devm_gpiod_get_optional(cdev->dev,
"device-state",
GPIOD_IN);
- if (IS_ERR(tcan4x5x->device_state_gpio))
+ if (IS_ERR(tcan4x5x->device_state_gpio)) {
tcan4x5x->device_state_gpio = NULL;
+ tcan4x5x_disable_state(cdev);
+ }
tcan4x5x->power = devm_regulator_get_optional(cdev->dev,
"vsup");
https://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git/log/?h=testing
...if I've collected every m_can related patch.