Linux CAN drivers development
 help / color / mirror / Atom feed
From: Kendall Willis <k-willis@ti.com>
To: Markus Schneider-Pargmann <msp@baylibre.com>,
	Chandrasekar Ramakrishnan <rcsekar@samsung.com>,
	Marc Kleine-Budde <mkl@pengutronix.de>,
	Rob Herring <robh@kernel.org>,
	Krzysztof Kozlowski <krzk+dt@kernel.org>,
	Conor Dooley <conor+dt@kernel.org>
Cc: Vishal Mahaveer <vishalm@ti.com>,
	Kevin Hilman <khilman@baylibre.com>, Dhruva Gole <d-gole@ti.com>,
	Sebin Francis <sebin.francis@ti.com>,
	Akashdeep Kaur <a-kaur@ti.com>, Simon Horman <horms@kernel.org>,
	Vincent MAILHOL <mailhol.vincent@wanadoo.fr>,
	<linux-can@vger.kernel.org>, <devicetree@vger.kernel.org>,
	<linux-kernel@vger.kernel.org>
Subject: Re: [PATCH v9 3/4] can: m_can: Return ERR_PTR on error in allocation
Date: Tue, 9 Sep 2025 13:53:31 -0500	[thread overview]
Message-ID: <6416cc05-ce05-4b6b-ad8d-daa327c87d2a@ti.com> (raw)
In-Reply-To: <20250820-topic-mcan-wakeup-source-v6-12-v9-3-0ac13f2ddd67@baylibre.com>

On 8/20/25 07:42, Markus Schneider-Pargmann wrote:
> We have more detailed error values available, return them in the core
> driver and the calling drivers to return proper errors to callers.
> 
> Reviewed-by: Vincent Mailhol <mailhol.vincent@wanadoo.fr>
> Signed-off-by: Markus Schneider-Pargmann <msp@baylibre.com>
> ---
>   drivers/net/can/m_can/m_can.c          | 6 +++---
>   drivers/net/can/m_can/m_can_pci.c      | 4 ++--
>   drivers/net/can/m_can/m_can_platform.c | 4 ++--
>   drivers/net/can/m_can/tcan4x5x-core.c  | 4 ++--
>   4 files changed, 9 insertions(+), 9 deletions(-)
> 
> diff --git a/drivers/net/can/m_can/m_can.c b/drivers/net/can/m_can/m_can.c
> index c68c95cc97075ddf72dbd2f177a999a09b8a21ca..e08fae5ddf5efa8345670dd50d50954ec5d52b29 100644
> --- a/drivers/net/can/m_can/m_can.c
> +++ b/drivers/net/can/m_can/m_can.c
> @@ -2392,7 +2392,7 @@ struct m_can_classdev *m_can_class_allocate_dev(struct device *dev,
>   					     sizeof(mram_config_vals) / 4);
>   	if (ret) {
>   		dev_err(dev, "Could not get Message RAM configuration.");
> -		goto out;
> +		return ERR_PTR(ret);
>   	}
>   
>   	if (dev->of_node && of_property_read_bool(dev->of_node, "wakeup-source"))
> @@ -2407,7 +2407,7 @@ struct m_can_classdev *m_can_class_allocate_dev(struct device *dev,
>   	net_dev = alloc_candev(sizeof_priv, tx_fifo_size);
>   	if (!net_dev) {
>   		dev_err(dev, "Failed to allocate CAN device");
> -		goto out;
> +		return ERR_PTR(-ENOMEM);
>   	}
>   
>   	class_dev = netdev_priv(net_dev);
> @@ -2417,7 +2417,7 @@ struct m_can_classdev *m_can_class_allocate_dev(struct device *dev,
>   
>   	m_can_of_parse_mram(class_dev, mram_config_vals);
>   	spin_lock_init(&class_dev->tx_handling_spinlock);
> -out:
> +
>   	return class_dev;
>   }
>   EXPORT_SYMBOL_GPL(m_can_class_allocate_dev);
> diff --git a/drivers/net/can/m_can/m_can_pci.c b/drivers/net/can/m_can/m_can_pci.c
> index 9ad7419f88f83016e93667f4847fe536eca39ad1..eb31ed1f964491ab41c7811be317706a09951390 100644
> --- a/drivers/net/can/m_can/m_can_pci.c
> +++ b/drivers/net/can/m_can/m_can_pci.c
> @@ -111,8 +111,8 @@ static int m_can_pci_probe(struct pci_dev *pci, const struct pci_device_id *id)
>   
>   	mcan_class = m_can_class_allocate_dev(&pci->dev,
>   					      sizeof(struct m_can_pci_priv));
> -	if (!mcan_class)
> -		return -ENOMEM;
> +	if (IS_ERR(mcan_class))
> +		return PTR_ERR(mcan_class);
>   
>   	priv = cdev_to_priv(mcan_class);
>   
> diff --git a/drivers/net/can/m_can/m_can_platform.c b/drivers/net/can/m_can/m_can_platform.c
> index b832566efda042929486578fad1879c7ad4a0cff..40bd10f71f0e2fab847c40c5bd5f7d85d3d46712 100644
> --- a/drivers/net/can/m_can/m_can_platform.c
> +++ b/drivers/net/can/m_can/m_can_platform.c
> @@ -87,8 +87,8 @@ static int m_can_plat_probe(struct platform_device *pdev)
>   
>   	mcan_class = m_can_class_allocate_dev(&pdev->dev,
>   					      sizeof(struct m_can_plat_priv));
> -	if (!mcan_class)
> -		return -ENOMEM;
> +	if (IS_ERR(mcan_class))
> +		return PTR_ERR(mcan_class);
>   
>   	priv = cdev_to_priv(mcan_class);
>   
> diff --git a/drivers/net/can/m_can/tcan4x5x-core.c b/drivers/net/can/m_can/tcan4x5x-core.c
> index 39b0b5277b11f5cf86137528e7ebea93a6d29c80..31cc9d0abd45360de8700d0a0270af8d3e42967d 100644
> --- a/drivers/net/can/m_can/tcan4x5x-core.c
> +++ b/drivers/net/can/m_can/tcan4x5x-core.c
> @@ -416,8 +416,8 @@ static int tcan4x5x_can_probe(struct spi_device *spi)
>   
>   	mcan_class = m_can_class_allocate_dev(&spi->dev,
>   					      sizeof(struct tcan4x5x_priv));
> -	if (!mcan_class)
> -		return -ENOMEM;
> +	if (IS_ERR(mcan_class))
> +		return PTR_ERR(mcan_class);
>   
>   	ret = m_can_check_mram_cfg(mcan_class, TCAN4X5X_MRAM_SIZE);
>   	if (ret)
> 

Reviewed-by: Kendall Willis <k-willis@ti.com>

  parent reply	other threads:[~2025-09-09 18:53 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-08-20 12:42 [PATCH v9 0/4] can: m_can: Add am62 wakeup support Markus Schneider-Pargmann
2025-08-20 12:42 ` [PATCH v9 1/4] dt-bindings: can: m_can: Add wakeup properties Markus Schneider-Pargmann
2025-08-22 14:35   ` Rob Herring
2025-08-27  8:04     ` Markus Schneider-Pargmann
2025-09-09  9:01       ` Markus Schneider-Pargmann
2025-09-02 19:59   ` Kendall Willis
2025-08-20 12:42 ` [PATCH v9 2/4] can: m_can: Map WoL to device_set_wakeup_enable Markus Schneider-Pargmann
2025-09-09 18:54   ` Kendall Willis
2025-08-20 12:42 ` [PATCH v9 3/4] can: m_can: Return ERR_PTR on error in allocation Markus Schneider-Pargmann
2025-09-04  9:08   ` Dhruva Gole
2025-09-09 18:53   ` Kendall Willis [this message]
2025-08-20 12:42 ` [PATCH v9 4/4] can: m_can: Support pinctrl wakeup state Markus Schneider-Pargmann
2025-09-04  9:05   ` Dhruva Gole
2025-09-09 18:57     ` Kendall Willis

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6416cc05-ce05-4b6b-ad8d-daa327c87d2a@ti.com \
    --to=k-willis@ti.com \
    --cc=a-kaur@ti.com \
    --cc=conor+dt@kernel.org \
    --cc=d-gole@ti.com \
    --cc=devicetree@vger.kernel.org \
    --cc=horms@kernel.org \
    --cc=khilman@baylibre.com \
    --cc=krzk+dt@kernel.org \
    --cc=linux-can@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mailhol.vincent@wanadoo.fr \
    --cc=mkl@pengutronix.de \
    --cc=msp@baylibre.com \
    --cc=rcsekar@samsung.com \
    --cc=robh@kernel.org \
    --cc=sebin.francis@ti.com \
    --cc=vishalm@ti.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox