Re: [PATCH v2] spi: stm32: disable device mode with st,stm32f4-spi compatible

From: Valentin CARON
Date: Wed Jul 05 2023 - 13:16:35 EST


Hi, Krzysztof

On 7/1/23 10:09, Krzysztof Kozlowski wrote:
On 28/06/2023 18:21, Valentin CARON wrote:
Hi,

On 6/27/23 15:39, Krzysztof Kozlowski wrote:
On 27/06/2023 14:39, Valentin Caron wrote:
STM32 SPI driver is not capable to handle device mode with stm32f4 soc.
Stop probing if this case happens, and print an error with involved
compatible.

...

static const struct of_device_id stm32_spi_of_match[] = {
@@ -1798,8 +1802,16 @@ static int stm32_spi_probe(struct platform_device *pdev)
struct device_node *np = pdev->dev.of_node;
bool device_mode;
int ret;
+ const char *compatible =
+ of_match_device(pdev->dev.driver->of_match_table, &pdev->dev)->compatible;
The goal was to replace it, so drop it.
Is is still needed for dev_err, so I can't
Why do you need it for dev_err? Isn't it entirely redundant?

Best regards,
Krzysztof

Only to have a clearer error message. To let know to user that spi device is not available on this device.

Right now, there is only one compatible where spi device can't be enable. So I could use a static message. But this is not the best if a new compatible is added.

Regards,
Valentin